Commented Issue: Resource Contention Limiting Parallelism [636]
It seems that, when multiple instances of DbContext exist on multiple threads and each thread calls SaveChanges(), there is some form of resource contention in EF itself limiting throughput.VS2012's...
View ArticleEdited Issue: Resource Contention Limiting Parallelism [636]
It seems that, when multiple instances of DbContext exist on multiple threads and each thread calls SaveChanges(), there is some form of resource contention in EF itself limiting throughput.VS2012's...
View ArticleCommented Unassigned: Full support for Transact-SQL LIKE operator [1323]
I wish that the Transact-SQL [LIKE operator](http://msdn.microsoft.com/en-us/library/ms179859.aspx) is fully supported by EF.The following three ways are known to me:```var ordersQuery =...
View ArticleEdited Feature: Full support for Transact-SQL LIKE operator [1323]
I wish that the Transact-SQL [LIKE operator](http://msdn.microsoft.com/en-us/library/ms179859.aspx) is fully supported by EF.The following three ways are known to me:```var ordersQuery =...
View ArticleCommented Task: Remove 1:1 mapping between .NET Framework version and EF...
Currently the designer assumes that it can infer Entity Framework runtime version based on .NET Framework version. With EF6 this assumption is no longer valid (one of the reasons why you could not...
View ArticleEdited Task: Merge ConventionsConfiguration Add methods [1250]
The model conventions will be applied for both C and S spaces, it will be up to the implementation to do the filtering.Also expose the data space on EdmModel.
View ArticleCreated Issue: Designer: New EF5 model on net40 project "unable to display"...
We use the project's installed EF runtime version to determine whether we can open specific edmx versions. However, during while creating new models, we open the edmx file before the NuGet package gets...
View ArticleCreated Task: Designer: Downgrade model-first models when ef6 selected on...
For empty models (a.k.a. model-first) we create a v3 edmx on projects that target .NET Framework 4. When the user first tries to generate a database from the model or update the model from a database,...
View ArticleEdited Task: Designer: Support non-SqlServer EF6 providers [1267]
Currently we block EF6 if the user is not using Sql Server or Sql Server CE. We need to fix this so that any EF6 provider could be used.
View ArticleCommented Task: Designer should use EF6 for validating models. [1261]
At the moment Designer still uses EF5 for validating models. We should:- use EF6 for validating models- make sure that errors from reverse engineering are propagated to the rest of the stack or model...
View ArticleCommented Task: EFDesigner - we need some testing around handling models...
Even though this is not a main line scenario it's not difficult to end up having a project that uses both System.Data.Entity.dll and EF6. A few scenarios are:- I have a bigger app and would like to...
View ArticleSource code checked in, #e4d0c89f669327ce3d7af4cdaf9128a265f9e98d
Adding AssemblyMetadata("Servicing", "true") to the runtime assemblies. Workitem: 1336
View ArticleEdited Task: Add AssemblyMetaData["Servicing", true] to runtime assemblies...
We need to add "AssemblyMetaData["Servicing", true]" to our assemblies for future servicing.
View ArticleCommented Task: Add AssemblyMetaData["Servicing", true] to runtime assemblies...
We need to add "AssemblyMetaData["Servicing", true]" to our assemblies for future servicing.Comments: Fixed in changeset e4d0c89f669327ce3d7af4cdaf9128a265f9e98d
View ArticleCommented Unassigned: Investigate: Unable to plug-in customized SQL...
We want to develop a multi-tenat application using EF code first model, where each tenant will have their own separate database. Since, we are expecting bit high-number of tenants, we want to maintain...
View ArticleCommented Issue: Consider removing DbProviderNameAttribute [1281]
We created DbProviderNameAttribute mainly to make it unnecessary to specify the provider invariant name in places in which a provider specific service was required. In particular we thought it would...
View ArticleSource code checked in, #8232a767e673f75febdf1801a8a3eb026a07cf47
Adding missing ConfigureAwait(false) calls to avoid deadlocks in UI and web applications. Workitem: 1284
View ArticleEdited Issue: SqlQuery(sql) with async does not honour ConfigureAwait(false)...
Hi,The following code in a web application (where there is a synchronization context) causes a dead-lock in EF6-beta1 (this code was working in EF6-alpha3). public async Task<SequenceBucket>...
View ArticleCommented Issue: SqlQuery(sql) with async does not honour...
Hi,The following code in a web application (where there is a synchronization context) causes a dead-lock in EF6-beta1 (this code was working in EF6-alpha3). public async Task<SequenceBucket>...
View ArticleCreated Unassigned: Stored Procs :: mapping many-many self reference to...
``` public class Person{ public int Id { get; set; } public string Name { get; set; } public ICollection<Person> Children { get; set; } public ICollection<Person> Parents { get; set; }}...
View Article