luglio 2011 Blog Posts
Rilasciata la versione CTP di “Code First Migrations” (per il momento solo per SQL Server), installabile via NuGet, che aggiunge alcuni comandi per la gestione delle modifiche di database creati utilizzando l’approccio Code First. Tutti i dettagli qui: http://blogs.msdn.com/b/adonet/archive/2011/07/27/code-first-migrations-august-2011-ctp-released.aspx. Attenzione alle compatibilità!!!
Rilasciati i Language Pack per EF 4.1. Lingue supportate: Chinese (Simplified) Chinese (Traditional) French German Italian Japanese Korean Russian Spanish Post: http://blogs.msdn.com/b/adonet/archive/2011/07/11/ef-4-1-language-packs.aspx Download: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=26708
Devo ammetterlo, non ho resistito alla tentazione e ho subito installato sulla VM la versione CTP June 2011 di Entity Framework. La prima feature che ho provato è il supporto agli enumerativi in modalità Code First. Partiamo subito con l’esempio. Banale classe Product e relativo DbContext: public class Product{ public string Code { get; set; } public string Description { get; set; } public DiscountType Discount { get; set; }}public class Db : DbContext{ public DbSet<Product>...
Il Team di ADO.NET non ci lascia mai soli : http://blogs.msdn.com/b/adonet/archive/2011/06/30/announcing-the-microsoft-entity-framework-june-2011-ctp.aspx Riporto una porzione del post: What’s in Entity Framework June 2011 CTP? The Microsoft Entity Framework June 2011 CTP introduces both new runtime and design-time features. Here are some of the new runtime features: The Enum data-type is now available in the Entity Framework. You can use either the Entity Designer within Visual Studio to model entities that have Enum properties, or use the Code First workflow to define entities that have Enum objects as properties. You can use your Enum...