Commented Feature: Migrations: Ability to 'Squash' Migrations [821]
After using EF Code First migrations for a while, I have reached a point where my production database is nice and stable. My code, however, has over a dozen migrations that are little more than...
View ArticleSource code checked in, #0dd09642da6f
moving transaction tests from transitional namespace
View ArticleCreated Issue: Query: VB.Net LINQ to Entitites doesn't support...
If you write a linq query that concatenates more than 4 strings then it throws a NotSupportedException with a message stating that it cannot translate Concat(string[]) to a store expression.It looks...
View ArticleSource code checked in, #8105c9279aae
DbModelBuilderVersion vs. SchemaVersion 1:2 We changed EdmModel to expose DbModelBuilderVersion. However this does not work for the designer for several reasons - mostly because the designer will still...
View ArticleEdited Issue: Upgrade to EF6 breaks migrations prior to upgrade [529]
If migrations are created in EF5, then the application is upgraded to EF6, reverts back to the migrations created in EF5 will break migrations history. Attached is program.cs which is constant...
View ArticleCommented Issue: Upgrade to EF6 breaks migrations prior to upgrade [529]
If migrations are created in EF5, then the application is upgraded to EF6, reverts back to the migrations created in EF5 will break migrations history. Attached is program.cs which is constant...
View ArticleCommented Issue: NullReferenceException when using Migrations and 6.0 alpha3...
I just updated my project to the 6.0.0-alpha 3 and now I am getting the following exception:```[NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.]...
View ArticleCommented Issue: Code First :: Null Reference Exception thrown when creating...
When trying to issue query (or whatever else) with the following model (with entity splitting and table splitting), I get NullReferenceException: public class ArubaRun{ public int Id { get; set; }...
View ArticleCommented Issue: Code First :: Null Reference Exception thrown when creating...
When trying to issue query (or whatever else) with the following model (with entity splitting and table splitting), I get NullReferenceException: public class ArubaRun{ public int Id { get; set; }...
View ArticleNew Post: Query generation in batch insert scenarios
I just wanted to say thanks for all the work everyone is putting into this. I'm definitely looking forward to when this gets into a usable form. I currently have one project that was using datasets...
View ArticleCommented Issue: Cannot use a property with a private setter that is declared...
"The following scenario in which the entity set is of the base type works as expected:using System.Data.Entity;namespace ConsoleApplication13{ class Program{ static void Main(string[] args){ using (var...
View ArticleCommented Issue: Reverse Engineer Code First: Using database name as entity...
The Reverse Engineer Code First process uses the database name (DbConnection.Database) as the entity container name. We don't do any escaping so this may contain invalid characters. This is basically...
View ArticleEdited Issue: EF fails when a winmd assembly is referenced [609]
http://stackoverflow.com/questions/13006980/entity-framework-and-windows-winmd/13021754#13021754
View ArticleCommented Issue: EF fails when a winmd assembly is referenced [609]
http://stackoverflow.com/questions/13006980/entity-framework-and-windows-winmd/13021754#13021754Comments: Fixed in changeset 50c1e5a2c46d
View ArticleSource code checked in, #b23468571ff5
TurnItUpToEleven (Allow model differ to handle MaxLength="MAX" in SSDL) Fix for CodePlex 726: Differ: Handle MaxLength="MAX" in SSDL SSDL allows a property to be set as MaxLength="Max" which is...
View ArticleCommented Issue: EF fails when a winmd assembly is referenced [609]
http://stackoverflow.com/questions/13006980/entity-framework-and-windows-winmd/13021754#13021754Comments: @moozzyk : Thanks a lot :)
View ArticleCommented Issue: Key in __Migrations is too long [536]
EF creates a key on (MigrationId,ContextKey) which exceeds the hardcoded maximum key length constraint in some RDBMS (e.g. 767 bytes in mysql). MigrationId is 255 characters long, and ContextKey is 512...
View ArticleCommented Feature: Make it easier to group related provider services together...
An EF provider potentially now provides four services:DbProviderServices -- main EF providerDbSpatialServices -- spatial services; obtained from main provider or registered...
View ArticleEdited Issue: Key in __Migrations is too long [536]
EF creates a key on (MigrationId,ContextKey) which exceeds the hardcoded maximum key length constraint in some RDBMS (e.g. 767 bytes in mysql). MigrationId is 255 characters long, and ContextKey is 512...
View ArticleClosed Issue: Key in __Migrations is too long [536]
EF creates a key on (MigrationId,ContextKey) which exceeds the hardcoded maximum key length constraint in some RDBMS (e.g. 767 bytes in mysql). MigrationId is 255 characters long, and ContextKey is 512...
View Article