【Entity FrameWork】从零开始第一步

不说太多的废话,此博文为了自己、为了刚入门的菜鸟另一个纪念。

 

vs 2008 sp1  、 vs2010 都可以开发ef

 

第一个我犯的错误

错误提示:语句中使用的类型必须可隐式转换为 System.IDisposable

解决方法:在你报错的当前项目中引用System.Data.Entity命名空间 就ok

 

 

 

第二个我犯的错误

错误提示:指定的命名连接在配置中找不到、非计划用于 EntityClient 提供程序或者无效

解决方法:你建立edmx文件会随机生成了一个配置文件把整个App.Config文件copydao当前项目中。

 

 

 看着别人的教程敲了一段代码

 

 

 

  class Program { static void Main(string[] args) { using (SchoolEntities se = new SchoolEntities()) { foreach (var item in se.Person) { Console.WriteLine(item.FirstName); } Person plist = (from p in se.Person where p.FirstName == "Roger" select p).First(); Console.WriteLine(plist.LastName + plist.FirstName); } } }

 

 

以后遇到错误我会及时发表到博中,

www.guoyz.com

你可能感兴趣的:(【Entity FrameWork】从零开始第一步)