New Comment on "Connection Resiliency Spec"
Just installed Beta 1 and I get this error on build..: Error 1 The type or namespace name 'SqlAzureDbConfiguration' could not be found (are you missing a using directive or an assembly reference?)
View ArticleNew Post: The changes to the database were committed successfully, but an...
I finally found my problem and as I suspected it was something stupid I did. In my model, I was building the query, loading values and returning a BindingList. What I did to fix it was to check to see...
View ArticleCommented Unassigned: SQL CE :: when trying to scaffold a migration that uses...
I have a simple model targeting Sql CE: public class Customer{ public int Id { get; set; } public string Name { get; set; }} public class MyContext : DbContext{ public DbSet<Customer> Customers {...
View ArticleEdited Issue: CodeFirst: Each call to Map/MapToStoredProcedures overrides the...
When making multiple calls to MapToStoredProcedures, we override the previous map stored proc settings. This is a bit confusing. For instance:``` C#modelBuilder .Entity<Blog>()...
View ArticleEdited Issue: Code First Stored Procs :: exception thrown when using stored...
When initializing the following model: public class CogTag{ public Guid Id { get; set; } public virtual Gear Gear { get; set; }} public class Gear{ public int Id { get; set; } public string Nickname {...
View ArticleCommented Issue: Code First Stored Procs :: exception thrown when using...
When initializing the following model: public class CogTag{ public Guid Id { get; set; } public virtual Gear Gear { get; set; }} public class Gear{ public int Id { get; set; } public string Nickname {...
View ArticleNew Post: Multi-tenancy and connection pool
I have just got the EF6 beta1; looks like the issue has been resolved. Since this was the test project, let me check this out in my actual project, will update you if the problem is still there....
View ArticleEdited Feature: EdmxWriter should work regardless of how the model was...
There are multiple design-time and runtime scenarios in which the ability to obtain metadata about a model and mapping us useful. An example of this is the ability to load a model pragmatically into...
View ArticleCommented Feature: EdmxWriter should work regardless of how the model was...
There are multiple design-time and runtime scenarios in which the ability to obtain metadata about a model and mapping us useful. An example of this is the ability to load a model pragmatically into...
View ArticleCommented Unassigned: CodeFirst - The underlying provider failed on Open. [1219]
Hello,I wrote a code first application in Entity Framework 5 and the communication between the application and database worked fine.I switched Entity Framework to [EntityFramework...
View ArticleCommented Issue: SqlQuery for non-mapped types is slow [746]
When using DbContext to perform queries using SqlQuery (context.Database.SqlQuery<T>) then queries are significantly slower when T is not included as a DbSet on the context.It appears that when...
View ArticleEdited Issue: SqlQuery for non-mapped types is slow [746]
When using DbContext to perform queries using SqlQuery (context.Database.SqlQuery<T>) then queries are significantly slower when T is not included as a DbSet on the context.It appears that when...
View ArticleEdited Feature: Make update command trees publicly constructible [1136]
We have an interception point for the creation of s-space DbCommandTree objects, but only the query command trees are publicly constructible. We should also make update command trees publicly...
View ArticleCommented Feature: Make update command trees publicly constructible [1136]
We have an interception point for the creation of s-space DbCommandTree objects, but only the query command trees are publicly constructible. We should also make update command trees publicly...
View ArticleCommented Issue: Consider changing default implementation of...
The exception is thrown on each query execution as a first chance exception for any provider that doesn't support spatial. It was [reported by a...
View ArticleCommented Issue: SqlProviderServices.ValidateVersionHint should avoid...
When EF6 is used with an EDMX which contains an SSDL Schema element with a ProviderManifestToken=2005, the call to BufferedDataReader.ReadMetadata() will handle a ProviderIncompatibleException due to...
View ArticleClosed Issue: CodeFirst: Each call to Map/MapToStoredProcedures overrides the...
When making multiple calls to MapToStoredProcedures, we override the previous map stored proc settings. This is a bit confusing. For instance:``` C#modelBuilder .Entity<Blog>()...
View ArticleCommented Issue: Code First Stored Procs :: exception thrown when using...
When initializing the following model: public class CogTag{ public Guid Id { get; set; } public virtual Gear Gear { get; set; }} public class Gear{ public int Id { get; set; } public string Nickname {...
View ArticleEdited Issue: Code First Stored Procs :: exception thrown when using stored...
When initializing the following model: public class CogTag{ public Guid Id { get; set; } public virtual Gear Gear { get; set; }} public class Gear{ public int Id { get; set; } public string Nickname {...
View ArticleCommented Feature: EdmxWriter should work regardless of how the model was...
There are multiple design-time and runtime scenarios in which the ability to obtain metadata about a model and mapping us useful. An example of this is the ability to load a model pragmatically into...
View Article