Created Issue: Codegen templates should all belong in the same category in...
In EF 5 we inadvertently had the DbContext template moved to the Data category while the EntityObject and Self-Tracking Entities templates available in the gallery belong in the Code category. As far...
View ArticleEdited Issue: Codegen templates should all belong in the same category in the...
In EF 5 we inadvertently had the DbContext template moved to the Data category while the EntityObject and Self-Tracking Entities templates available in the gallery belong in the Code category. As far...
View ArticleCreated Issue: PowerTools: T4 host used doesn't honor registered directive...
The VS and command line hosts for the T4 processor allow registering custom directives that can be processed by types registered under...
View ArticleEdited Issue: PowerTools: T4 host used doesn't honor registered custom...
The VS and command line hosts for the T4 processor allow registering custom directives that can be processed by types registered under...
View ArticleEdited Issue: PowerTools: T4 host doesn't honor registered custom directive...
The VS and command line hosts for the T4 processor allow registering custom directives that can be processed by types registered under...
View ArticleCommented Issue: EF6 throws an exception [Invalid object name...
Repro steps: - Create a console application in Visual Studio 2012 - Install a recent EF6 nuget package (this should remove EF5 package automatically) - Make sure that no DB with the name "MyTestDB2"...
View ArticleCommented Issue: EF6 throws an exception [Invalid object name...
Repro steps: - Create a console application in Visual Studio 2012 - Install a recent EF6 nuget package (this should remove EF5 package automatically) - Make sure that no DB with the name "MyTestDB2"...
View ArticleClosed Issue: EF6 throws an exception [Invalid column name...
Repro steps: - Create a console application in Visual Studio 2012 - Install official EF5 nuget package to the project - Copy the code below, and execute - Verify that a DB with the name "MyTestDB" is...
View ArticleClosed Issue: EF6 throws an exception [Invalid object name...
Repro steps: - Create a console application in Visual Studio 2012 - Install a recent EF6 nuget package (this should remove EF5 package automatically) - Make sure that no DB with the name "MyTestDB2"...
View ArticleSource code checked in, #c013cf02936a
Adding more methods and properties to the lightweight configuration objects. These include: * CLR Type/PropertyInfo * IsKey on property * Get Table and Schema on entity
View ArticleNew Post: Entity View generation
Much appreciated! I'll give it a try asap. Kind Regards Massimiliano.
View ArticleNew Post: DbContext Connection events or overrides
Will that help you? DbContext context = new DbContext(); context.Database.Connection.StateChange += Connection_StateChange; void Connection_StateChange(object sender, StateChangeEventArgs e) { ///...
View ArticleCreated Issue: Consider making 1EF use the ASP.NET connection if present [624]
It can be confusing when ASP.NET adds a "Default Connection" to the config file but then EF doesn't use this connection. In the 1EF tooling we should consider making the two play nicer together,...
View ArticleCommented Issue: Docs: Update config documentation for EF6 [558]
The configuration documentation needs updating to include the new options we ship in EF6. This includes both the existing app.config documentation (that came from Rowan's blog post) and any...
View ArticleCreated Issue: Investigate Code Contracts static analysis errors [625]
Andriy ran analysis and found 27 possible errors. These should be investigated.
View ArticleCreated Issue: Review core metadata APIs for public conventions [626]
The metadata unification means we need to review which core metadata APIs are public and/or mutable.
View ArticleNew Post: DbContext Connection events or overrides
No--because I need to unset the approle before closing the connection. The StateChanged event fires after the connection has been closed--not before.
View ArticleCreated Issue: STE: Expose error code for InvalidOperationException [627]
Handling exceptions with self-tracking entities is ugly because one must parse the (localized?) message string. Please expose an error code with InvalidOperationException.It is not clear to me why STEs...
View ArticleCommented Issue: EF4.3.1 on .NET 4 / VS2012 - The mapping of CLR type to EDM...
We're using EF 4.3.1 code-first under .NET 4.0 and VS2012. We have a query that looks similar to the following:ctx.Set<Entities.A>().Select(a => new DTO.A { Id = a.Id, Name = a.Name...
View ArticleCommented Issue: EF4.3.1 on .NET 4 / VS2012 - The mapping of CLR type to EDM...
We're using EF 4.3.1 code-first under .NET 4.0 and VS2012. We have a query that looks similar to the following:ctx.Set<Entities.A>().Select(a => new DTO.A { Id = a.Id, Name = a.Name...
View Article