首页 > 其他 > 详细

其他的项目调用DAL项目中的EF Model

时间:2014-06-24 15:43:13      阅读:385      评论:0      收藏:0      [点我收藏+]



Based on your description and the error code, you will just need to ensure that your DataContext class inheirits from IDisposible:

public class YourDataContextClass : DbContext,IDisposable
{
     //Your class details here
}

And then install the EntityFramework in your references project using Manage NuGet Packages.

In last, setup the connectionstring in your references project config file.

Now, it should work fine.

其他的项目调用DAL项目中的EF Model,布布扣,bubuko.com

其他的项目调用DAL项目中的EF Model

原文:http://blog.csdn.net/mx5721/article/details/34089141

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!