New Post: Merge Disconnected Object Graph
Hi Eric, Low is the default initial impact. The item will get an appropriate impact set when the EF team triages new items, which usually happens once per week. Thanks, Arthur
View ArticleNew Post: Merge Disconnected Object Graph
<div dir="ltr">Thank you Arthur.</div><div><br><br><div>On Mon, Feb 11, 2013 at 12:38 PM, ajcvickers <span dir="ltr"><<a...
View ArticleNew Post: Manual Connection Control...
Are there plans to move optionally to full manual connection control and is it possible to do so already with a hack in 5.0? I Regularly do applications that are high performance / high concurrent. The...
View ArticleNew Post: Build error: Code Analysis CA1006
Downloaded latest source, and running build.cmd on system with VS 2012 (and VS 2010) installed. Getting error: c:\Users\erik\Downloads\entityframework-150fa7263abe\src\EntityFramew...
View ArticleNew Post: Build error: Code Analysis CA1006
Looking at ExecutionStrategy.cs in same folder, it looks like this CA supression is missing from NonRetryingExecutionStrategy.cs i 2 places: [SuppressMessage("Microsoft.Design",...
View ArticleNew Post: Build error: Code Analysis CA1006
Hi Erik, Thanks for reporting this. I filed a bug here: http://entityframework.codeplex.com/workitem/899 Thanks, Arthur
View ArticleNew Post: EF 6 and async for .NET 4.0 ?
So far the documentation states that there will be no async support for .NET 4.0 since it does not support async/await. But it when using VS 2012 you can get async/await support by merly installing...
View ArticleNew Post: EF 6 and async for .NET 4.0 ?
Yes, that is correct. What is missing is the async APIs in the ADO.NET base classes under System.Data.Common. Microsoft.Bcl.Async provides extension methods for SqlClient only, and only for the async...
View ArticleNew Post: SqlProviderUtilities makes it impossible to wrap SqlClient...
Since SqlConnection is a sealed class; we derived custom classes from it.Since SqlProviderUtilities throws an exception if the DbConnection argument isn't of type SqlConnection, we cannot provide a...
View ArticleNew Post: Update-Database throws NullReferenceException (alpha 3)
I am using EF 5 on a .net 4.0 WPF application (so it is 4.4.0.0) - I decided to remove it and install 6 alpha 3, removed all references of System.Data.Entity.dll, added EF 6 alpha-3 using nuget,...
View ArticleNew Post: Update-Database throws NullReferenceException (alpha 3)
This seems to be similar to: http://entityframework.codeplex.com/workitem/867
View ArticleNew Post: How to create convention for default value?
What's the best way to make all columns named "Guid" to have DefaultValue = "newsequentialid()" except if it has <CustomDontSetDefaultAttribute>
View ArticleNew Post: LINQ to Entities: Client-side Expressions in Final Projection
Hi Arthur, It been a long time since our discussion and during this time, I have been checking the site regularly waiting for the design/implementation notes to appear on the website but couldn't ever...
View ArticleNew Post: EF6 support for ASP.NET WebForms EntityDataSource
The EntityDataSource control in ASP.NET uses System.Data.Entity and exposes System.Data.Objects.ObjectContext. With all the EF "classic" stuff being pulled into the EntityFramework dll and the...
View ArticleNew Post: EF6 support for ASP.NET WebForms EntityDataSource
Hi Duncan, We haven't yet decided whether or not to release a version of the Entity Data Source for EF6. Part of what will impact the final decision is the number of people that need this. So far you...
View ArticleNew Post: EF6 support for ASP.NET WebForms EntityDataSource
Cheers Arthur. If push came to shove, I could decompile/get the reference source to System.Web.Entity.dll and patch it myself :-) Duncan
View ArticleNew Post: EF6 support for ASP.NET WebForms EntityDataSource
Hi Duncan, Thanks for your feedback. Can you please create a suggestion in our UserVoice site. There other people can see your idea and vote for it they also want the same thing. Thanks, Diego
View ArticleNew Post: EF6 support for ASP.NET WebForms EntityDataSource
Good idea Diego, done: http://data.uservoice.com/forums/72025-entity-framework-feature-suggestions/suggestions/3702890-support-for-asp-net-entitydatasource-and-dynamicda
View ArticleNew Post: Data-Modifications during Migration
Hi, I finally switched to EF5 DbMigrations and I really like it! But I have a question about data modifications: Data seeding is for seeding default values but how I should deal with data modifications...
View ArticleNew Post: Data-Modifications during Migration
Hi SeriousM, It is generally not OK to use DbContext within migrations Up/Down methods because migrations represent your model at a point-in-time whereas your DbContext always represents the latest...
View Article