Quantcast
Channel: Entity Framework
Browsing all 10318 articles
Browse latest View live
↧

Created Unassigned: Enable-Migrations with model errors is a bad experience...

When the developer tries to run the ```PM> Enable-Migrations``` command with a model that throws an exception this puts the project in a confusing state. Migrations are successfully enabled and a...

View Article


Closed Issue: EF Stored Procs :: Many-Many self reference mapped to stored...

Repro:Create the following model:``` public class ArubaPerson{ public int Id { get; set; } public string Name { get; set; } public ArubaPerson Partner { get; set; } public...

View Article


Closed Issue: Stored Procs :: error during scaffold migration when trying to...

Repro - create the following model:``` public abstract class Weapon{ public int Id { get; set; }// 1 - 1 self reference public virtual Weapon SynergyWith { get; set; }} public class HeavyWeapon :...

View Article

Created Issue: Designer: Graphical/Layout issue on diagram after Redo...

Steps:1. Create new empty EDMX2. "Update model from database" (I used Adventureworks 2012)3. Undo the reverse-engineer operation. (back to empty model)4. Redo the reverse-engineer.At this point, it...

View Article

Closed Task: Conventions should throw on invalid configuration [1047]

Alter conventions to throw when you get invalid configuration, such as calling HasKey with a property that doesn't exist for the entire set of types.Comments: Confirmed Fixed

View Article


Edited Issue: Connection resiliency: Make sure we don't retry on spurious...

This work item is about the parts of [1114 "Connection resiliency: possible data corruption if connection fails after transaction commit"](https://entityframework.codeplex.com/workitem/1114) we are...

View Article

Commented Issue: One to one issue in TPC hierarchy with mapped abstract base...

Hi, I have a TPC hierarchy like this:``` public abstract class Base{ public Guid BaseId { get; set; } public string BaseName { get; set; }} public class Sub1 : Base{ public Sub2 Vender { get; set; }}...

View Article

Edited Feature: EFDesigner ModelFirst should set READ_COMMITTED_SNAPSHOT when...

EFDesigner ModelFirst should set READ_COMMITTED_SNAPSHOT when creating a script for new databases.Similarly to what we have done for CodeFirst - http://entityframework.codeplex.com/workitem/7

View Article


Edited Issue: No error when installing EF NuGet package on .NET 3.5 project...

I ran into this creating a console app from scratch because VS 2012 remembered the target framework from a previous app. It is a negative scenario, but the package installs and adding the assembly...

View Article


Commented Issue: No error when installing EF NuGet package on .NET 3.5...

I ran into this creating a console app from scratch because VS 2012 remembered the target framework from a previous app. It is a negative scenario, but the package installs and adding the assembly...

View Article

Edited Issue: No error when installing EF6 NuGet package on .NET 3.5 project...

I ran into this creating a console app from scratch because VS 2012 remembered the target framework from a previous app. It is a negative scenario, but the package installs and adding the assembly...

View Article

Commented Issue: Perf: DatabaseTableChecker could be very slow [1330]

On one code path, DatabaseTableChecker queries the database for all table names before doing client-side checks. This could be very slow for large databases. Perhaps we can push logic to the...

View Article

Commented Issue: Perf: DatabaseTableChecker could be very slow [1330]

On one code path, DatabaseTableChecker queries the database for all table names before doing client-side checks. This could be very slow for large databases. Perhaps we can push logic to the...

View Article


Created Unassigned: Stored Procs :: Migrations :: when doing initial create...

Basically if during Enable-Migrations we detect that db exists, we create initial migration. If this database had stored procedure, we scaffold proc with empty body. This seems fine (if we cant detect...

View Article

Edited Issue: Make provider manifest and information available to model...

While the Code First pipeline has access to the provider manifest instance and provider information the whole time during model construction, the ProviderManifest and ProviderInfo properties on the...

View Article


New Post: MySql .Net connector and EF6

I'd like to get EF6 working with MySQL as well. Are there any new developments on this?

View Article

Created Feature: Consider adding Ignore method directly on lightweight...

This is based on customer feedback located [here](http://blogs.msdn.com/b/adonet/archive/2013/05/30/ef6-beta-1-available.aspx?wa=wsignin1.0#10430343). The idea is to enable doing something like this:...

View Article


Commented Feature: Consider adding Ignore method directly on lightweight...

This is based on customer feedback located [here](http://blogs.msdn.com/b/adonet/archive/2013/05/30/ef6-beta-1-available.aspx?wa=wsignin1.0#10430343). The idea is to enable doing something like this:...

View Article

Commented Issue: Designer: Unhelpful error message after upgrading to VS2012...

This issue was reported via Connect http://connect.microsoft.com/VisualStudio/feedback/details/761883/vs-give-unknown-error-message-while-generating-db-from-efThe Connect issue records that a few...

View Article

New Post: EF6 Code First: All string properties are output as unicode: false...

I'm using Entity Framework 6 Beta 1 with MySQL via the DevArt dotConnect provider. I want all of my string properties to be output as unicode in the migration code files, but they are all output with...

View Article
Browsing all 10318 articles
Browse latest View live