问题描述
我在看微软的MVC5教程看到的是mvc+EF的组合用法教程里面PersonModel对应一个PersonContextpublicclassMPersonContext:DbContext{privateDbSet<MPerson>_MPersons;publicDbSet<MPerson>MPersons{get{return_MPersons;}set{_MPersons=value;}}}然后需要在webconfig页面中<connectionStrings>下添加一条<Addname=“MPersonContext”......>现在想知道的是是不是每个Model都需要对应一个Context类然后对应一条语句
解决方案
本帖最后由 u014246321 于 2014-08-22 15:15:06 编辑
解决方案二:
不是,DbContext是数据操作上下文,如果还有其他类只需要在你的MPersonContext下再添加DbSet<T>属性就可以了
时间: 2024-09-10 20:37:24