English 中文(简体)
与实体框架版本的结合
原标题:Confusion with Entity Framework versions

我对微软发布的实体框架版本缺乏时间的了解。 我有一个基础实体框架版本4.1,其本身并不支持。 在2011年6月释放了CTP之后,我被劝说要使用它,以便我能够获得LLINQ支持。 因此,我计划利用2011年6月CTP的支持制定我的申请,希望到我提出申请时,下一个版本将出现和支持。 在2011年6月之后,实体框架4.1第1号更新版发布,根据我的理解,这一框架并不支持。 之后,第4.2版出现,我再次怀疑它是否支持。 因此,这是我第一次利用微软技术开发应用,我感到困惑不解。 我有两个问题。

  1. 如果释放了CTP版本,那么下一次释放应该以这一方式为基础,而不是停止原先作为主要特征而在CTP中支持的内容?

  2. 如果我需要把我的申请(与实体Framework June 2011 CTP)放在单独的测试机器上,那么我就需要为2011年6月的实体框架版本安装任何额外的设备。

如果我不正确理解实体框架的版本,请赦免我。 也是上述第一个问题可能是我的无知,但我主要关注的是第二个问题。

最佳回答
  1. No. CTP is preview of something that can be released. But when it will be released nobody knows. It even be never released or the final version doesn t have to include enums at all. Current CTP doesn t have go live licence so you can easily invest into development of something that would never reach production code.
  2. You will need .NET 4.0 and that CTP.

现金转拨方案仅用于审查新的转贷人,而不用于实际开发,因为今后的任何CTP版本或RTM版本都能够引入破碎的改动,或消除以前在CTP中可以找到的特征。 如果是欧洲自由贸易联盟,在释放第4条第1款之前就已发生这种情况,因为海关公约完全从欧洲关税同盟中删除,因此可以再次发生。 如果我 en想,由于目前的执行不够,支助要么完全重新设计,要么取消。

问题回答

暂无回答




相关问题
Entity Framework with MySQL connector in c#

I have been trying to get the Entity Framework to work in my web application using MySQL. It works fine on my local pc, but doesn t work when I put it on the server. Since the server is a shared ...

How Do I Create And Update A Many To Many Relationship With EF

I am using the Entity Framework with SQL Server. I have a many to many relationship between 2 tables. I have created a join table with just the primary key fields of the 2 tables. In the designer, the ...

Entity Framework with File-Based Database

I am in the process of developing a desktop application that needs a database. The application is currently targeted to SQL Express 2005 and works wonderfully. However, I m not crazy about having ...

Linq to enties, insert foreign keys

I am using the ADO entity framework for the first time and am not sure of the best way of inserting db recored that contain foreign keys. this is the code that i am using, I would appreciate any ...

Entity Framework - Many to many question

I have a table called ASB and a table called PeopleInvolved. There is a junction table called PeopleInvolved_ASB which simply contains an ASBID and a PeopleInvolvedID column. The columns act as a ...

Post back complex object from client side

I m using ASP.NET MVC and Entity Framework. I m going to pass a complex entity to the client side and allow the user to modify it, and post it back to the controller. But I don t know how to do that ...

ADO.NET Entity Data Model are not precise enough

I run this code: var cos = from k in _db.klienci_do_trasy where k.klient_id == 5 select k; but the query send to database is: SELECT * FROM `klienci_do_trasy` LIMIT 0, 30 why is it for, there ...

热门标签