Closed Issue: PS commands should maintain PMC focus [312]
Some of the PowerShell commands open Visual Studio items and the keyboard focus is taken from the Package Manager Console during execution.These commands should restore focus to the PMC window before...
View ArticleNew Post: EF Migrations: Add extension support for new operations
Andrew,Seems like that issue fits almost perfectly with this. great!As for the CLA I'm going to sent it inmediately.Thanks! -- ________________________ Iñaki Elcoro ✉ ielcoro@gmail.com
View ArticleEdited Issue: Small bug in DbDatabaseMappingExtensions [398]
internal static DbDatabaseMapping Initialize( this DbDatabaseMapping databaseMapping, EdmModel model, DbDatabaseMetadata database ) { Contract.Requires( databaseMapping != null ); Contract.Requires(...
View ArticleClosed Issue: Small bug in DbDatabaseMappingExtensions [398]
internal static DbDatabaseMapping Initialize( this DbDatabaseMapping databaseMapping, EdmModel model, DbDatabaseMetadata database ) { Contract.Requires( databaseMapping != null ); Contract.Requires(...
View ArticleCreated Feature: Migrations: Consider options for improving multi-user...
We have been brainstorming ideas for better dealing with multi-user migrations issues.Issue: After sync, if the user has local migrations then they will often get a model out of date exception because...
View ArticleCreated Issue: Linq Funcletization :: consider funcletizing inline...
We funcletize ICollection.Count, if passed as a parameter, e.g. var localList = new List<int> { 1, 2, 3 }; var query = context.Categories.Select(c => localList.Count);produces the following...
View ArticleSource code checked in, #fbdeeffd1740
Fix for #761 - Migrations: Crash when earlier migration added (multi-user) Problem: When applying an earlier migration (after sync in a team env.) we could try to create the history table even though...
View ArticleEdited Issue: Migrations: Crash when earlier migration added (multi-user) [761]
When an earlier migration is added (typically by pulling another dev's changes) we crash on update.PM> Update-Database -VerboseUsing StartUp project 'ClassLibrary2'.Using NuGet project...
View ArticleCommented Issue: Migrations: Crash when earlier migration added (multi-user)...
When an earlier migration is added (typically by pulling another dev's changes) we crash on update.PM> Update-Database -VerboseUsing StartUp project 'ClassLibrary2'.Using NuGet project...
View ArticleSource code checked in, #5e3cb691f29b
MaybeJoleisaAlwaysTheSame (Add resolvers for DbProviderFactory and invariant names) This change supports configless registration of ADO.NET providers. The default resolvers currently always read...
View ArticleCreated Issue: Designer: TVF code generation [782]
Note: This does not apply to the Designer which was shipped in VS2012 -- only to the private codebase maintained by moozzyk.The DbContext templates which get installed and used by the Designer are...
View Article"out of range" error [783]">Created Issue: Designer: "Add a Condition" => "out of range" error [783]
Note: This does not apply to the Designer which was shipped in VS2012 -- only to the private codebase maintained by moozzyk.Repro steps:1. Add new EDMX from existing database.2. Go to mapping details...
View Article"out of range" error [783]">Edited Issue: Designer: "Add a Condition" => "out of range" error [783]
Note: This does not apply to the Designer which was shipped in VS2012 -- only to the private codebase maintained by moozzyk.Repro steps:1. Add new EDMX from existing database.2. Go to mapping details...
View ArticleCreated Issue: Linq Funcletization :: consider funcletizing ArrayLenght [784]
Currently we funcletize ICollection<T>.Count but we don't funcletize Array<T>.Length (we throw NotSupportedException)
View ArticleCreated Issue: Linq Funcletization :: one of the Decimal constructors does...
We support funcletization of primitive constructors (i.e. new Decimal(1.5)).However the following constructor:public Decimal(int[] bits)is not recognized and throws:Only parameterless constructors and...
View ArticleCommented Issue: Linq Funcletization :: one of the Decimal constructors does...
We support funcletization of primitive constructors (i.e. new Decimal(1.5)).However the following constructor:public Decimal(int[] bits)is not recognized and throws:Only parameterless constructors and...
View ArticleCommented Issue: SqlServerMigrationSqlGenerator.CreateConnection does not...
We got this bug report from Fitzchack Yitzchaki of Hibernating Rhinos:public class SqlServerMigrationSqlGenerator : MigrationSqlGenerator{ protected virtual DbConnection CreateConnection(){ return new...
View ArticleEdited Issue: SqlServerMigrationSqlGenerator.CreateConnection does not allow...
We got this bug report from Fitzchack Yitzchaki of Hibernating Rhinos:public class SqlServerMigrationSqlGenerator : MigrationSqlGenerator{ protected virtual DbConnection CreateConnection(){ return new...
View ArticleCommented Issue: If possible, avoid calling DbProviderFactories.GetFactory to...
We use this when trying to associate connections with provider invariant names and factories to ensure that we get a good match. However, it means that we potentially load provider assemblies that are...
View ArticleClosed Issue: If possible, avoid calling DbProviderFactories.GetFactory to...
We use this when trying to associate connections with provider invariant names and factories to ensure that we get a good match. However, it means that we potentially load provider assemblies that are...
View Article