MVC:我在我的存储库中创建了一个 addquestion 方法,该方法调用 .addobject();和保存更改();

发布于 2025-01-07 07:59:08 字数 505 浏览 1 评论 0原文

我创建了一个方法 addquestion ,调用 addobject() 和 savechanges()

方法内的代码如下:

公共类AdminRepository
{
    Model1Container db = new Model1Container();
    CreateViewModel 代表 = new CreateViewModel();

    public void Question addquestion() // <-- 我不知道该方法应该如何
    {
        问题 q = 新问题();

        q.QuestionText =rep.QuestionText;

        db.Question.AddObject(q);
        db.SaveChanges();
    }

我知道代码是正确的,但我不知道如何定义该方法。

提前致谢!

此致!

I made a method addquestion that calls addobject() and savechanges()

the Code inside the method is following:

public class AdminRepository
{
    Model1Container db = new Model1Container();
    CreateViewModel rep = new CreateViewModel();

    public void Question addquestion() // <-- I dont know how the method should be
    {
        Question q = new Question();

        q.QuestionText = rep.QuestionText;

        db.Question.AddObject(q);
        db.SaveChanges();
    }

I know that the code is right but I dont know how to define the method.

Thanks in advance!

Best Regards!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一个人的旅程 2025-01-14 07:59:08

您指定了 voidQuestion 返回类型,

由于您实际上并未在方法中返回任何内容,因此正确的返回类型是 void

public void addquestion()
{
   //Your code here
}

You are specifying both a return type of void and Question

Since you aren't actually returning anything inside your method, the correct return type is void

public void addquestion()
{
   //Your code here
}
凶凌 2025-01-14 07:59:08
public void AddQuestion()
{
    ....
}
public void AddQuestion()
{
    ....
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文