MVC:我在我的存储库中创建了一个 addquestion 方法,该方法调用 .addobject();和保存更改();
我创建了一个方法 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您指定了
void
和Question
返回类型,由于您实际上并未在方法中返回任何内容,因此正确的返回类型是
void
You are specifying both a return type of
void
andQuestion
Since you aren't actually returning anything inside your method, the correct return type is
void