New Post: EF6 support for ASP.NET WebForms EntityDataSource
I really am looking forward to the new EntityDatasource control. Not being able to use it with the new Entity Framework 6 really is a hassle when maintening and improving existing application. In the...
View ArticleNew Post: EF6 support for ASP.NET WebForms EntityDataSource
The preview is out!http://blogs.msdn.com/b/webdev/archive/2014/01/30/announcing-preview-of-dynamic-data-provider-and-entitydatasource-control-for-entity-framework-6.aspx
View ArticleNew Post: Severe performance issues with concurrent EF reads under load
I have close the item we created to track this at https://entityframework.codeplex.com/workitem/1952. See the comments for some conclusions.
View ArticleNew Post: is there a plan to do migration in Model first or Database first...
I hate to tell you - that is a non-Argument. First, deployment scripts as main measure of Change are something that can be executed from the program, too. Second, database rebuilds can be autoamted,...
View ArticleNew Post: EF Designer to work with connection strings in separate file
Is there a way to get the designer to work with a connection string in a separate file with out it prompting for a 'Choose you data connection' and wanting to save it automatically to the app.config....
View ArticleNew Post: EF Designer to work with connection strings in separate file
@zaceverett: I don't think it's possible at the moment. Pawel
View ArticleNew Post: Are there .pdb files for EF 5?
can you please publish PDB and source for releases to symbolsource.org or nuget?
View ArticleNew Post: EDMX Schema Version 3.0 being used in Visual Studio 2010 with "View...
I'm having difficulty using the the "View Entity Data Model (Read Only)" feature when working with a code first project in Visual Studio 2010 (Entity Framework 6.0). When I choose this option I...
View ArticleNew Post: EDMX Schema Version 3.0 being used in Visual Studio 2010 with "View...
The EF tooling in VS2010 does not support v3 of EDMX. V3 Edmx is only supported in VS2012 and VS2013.
View ArticleNew Post: Sql 2014 Memory Optimized Tables Support
Hi, Was wondering what the roadmap is for Sql 2014 memory optimized table support is? We made an attempt to get EF to work with them, but commands to these tables still require some special syntax. Has...
View ArticleNew Post: EDMX Schema Version 3.0 being used in Visual Studio 2010 with "View...
Yes, I understand this but why is the Power Tools creating an EDMX file with the EDMX V3 when it should be V2? I'm unable to view an read-only models as they're all being created as version 3.
View ArticleNew Post: Unable to uninstall 'EntityFramework 5.0.0' because...
I was having this issue as well. Using the Nuget Package Manager, then found “Microsoft ASP.NET Universal Providers for Core Libraries” (you can see in the right pane that the dll for this is...
View ArticleNew Post: Sql 2014 Memory Optimized Tables Support
Hi feech, Are you referring to DDL commands? If so, the way to do it is to create a custom MigrationSqlGenerator by deriving from SqlServerMigrationSqlGenerator. In your derived implementation, you can...
View ArticleNew Post: Sql 2014 Memory Optimized Tables Support
What about supporting update and delete commands to memory tables where you have to specify a higher transaction level using the "WITH" keyword for each query? It is explained in more detail here:...
View ArticleNew Post: Automatic stored procedure mapping to delegate types.
Hi guys, hope this is the correct place to post this. We're limited to only accessing the database with stored procedures, however, it would be nice to use the mapping power of EF. I've had a look at...
View ArticleNew Post: Reverse Engineer with Wizard
You can download the EF Reverse POCO generator here
View ArticleNew Post: Source code
I'm the developer of "EntityFramework Reverse POCO Generator" over at https://efreversepoco.codeplex.com/. I've got a few requests to generate for different databases. I currently only support SQL...
View ArticleNew Post: Code First TVF in 6.1.0-alpha1-30113
Halo_Four, If you have any code snippets that would be greatly appreciated. I just finished a major sprint and have some extra cycles to devote to testing it out. Sadly, the current work has a terrible...
View ArticleNew Post: Code First DbContext generator from model
Are there any plans to create T4 templates to generate EF Code First DbContext, entities, and mappings from a model? I like the model first approach, but I can't stand the connection strings required...
View ArticleNew Post: MigrateDatabaseToLatestVersion not using the context parameter
Due to the requirements of my project I need to be able to change the connection string in runtime. I can do that by creating connection string and supplying it as a parameter to my DbContext...
View Article