New Post: Enable-Migrations encounter "System.BadImageFormatException: Could...
I used VS2010 under Win7(x64 ), installed Nuget and install the EF Package. And can read and write DB successful. But I want to Enable Migration used the Nuget Package Manager Console, then I will...
View ArticleNew Post: Allowing The Writing Of Int32 DB Values Into Int64 Entity Keys
What are benefits of having the IEntity interface? Do you use outside of your repository class? What for? If you are not using it outside your repository class I would argue you need this interface-...
View ArticleNew Post: Model and NCHAR
I wanna create a model class with a property type String and generate column with NCHAR(11), I using Fluent API for do this protected override void OnModelCreating(DbModelBuilder modelBuilder) {...
View ArticleNew Post: Any statements on Unique Key Plans?
Just to make my voice heard, I a very similar use case for unique key support as the OP.
View ArticleNew Post: Release connection when using IDbConnectionFactory
Hi *, when I use implement IDbConnectionFactory I have no way to tell the underlying CI container. There's no "Release" method. Are there plans to extend this interface (or provide other way)? JC
View ArticleNew Post: Issues migration from EF5 to EF6a3
I update one MVC4 project using NuGet from EF5 to EF6a3 and exclude the reference to System.Data.Entity. Unfortunately I have some issues. First, the web.config don't accept the <providers>...
View ArticleNew Post: custom O-C mapping contributions
David, Yes, I'm try to finish the pull request this week. Currently I have an issue, but I hope the team can help me with this today :-).... Of course, the team will evaluate it to see if is correct...
View ArticleNew Post: custom O-C mapping contributions
Hi Unai, I took a look at the code as discussed and I am responding here to keep the conversation together and in a place where others can see. I didn't look at all aspects of the code but focused on...
View ArticleNew Post: custom O-C mapping contributions
I took a look and add more commit in pull request if I solve this issue.. thanks again Arthur Unai
View ArticleNew Post: Release connection when using IDbConnectionFactory
@cincura_net EF uses IDbConnectionFactory for generating connections that are always owned by a context instance and are therefore always disposed by the context when it is disposed. We don't currently...
View ArticleNew Post: Issues migrating from EF5 to EF6a3
@maxbundchen In previous versions of EF some of the core components were a part of the .NET Framework. In EF6 we've moved all these components into our NuGet package, allowing us to develop and deliver...
View ArticleNew Post: Release connection when using IDbConnectionFactory
OK, if the DbContext is considered to always own the connection and disposes it, then it's fine. I was just thinking doing the cleanup myself. The only problem that might (or not) happen is when you...
View ArticleNew Post: Issue 1043-Efficient API to ask if there are pending changes on a...
I read the description of this issue and specially the things to be decided: Location: we could put this on either ChangeTracker or on DbContext directly. Naming: Pick one between HasChanges, IsDirty...
View ArticleNew Post: Issue 1043-Efficient API to ask if there are pending changes on a...
Hi Unai, Nice to hear from you on this so quickly :) We discussed this briefly and we came to some decisions (feel free to push back if you think these are wrong):"Name: HasChangesLocation:...
View ArticleNew Post: Suggestions for the designer
Implementation of Data Annotations for designer like Code First. (Just don't want to create a partial class and then typing all the properties again) Support Enum Type sharing across edmx. (E.g: I have...
View ArticleNew Post: Suggestions for the designer
I just came here looking for the same solution to point # 1. There is no way this is productive for either an individual nor team. Why go though all the trouble of using the designer only to come right...
View ArticleNew Post: Big problems getting code-first migrations to work with SQL CE...
Regards, I have an urgent question and I posted it here:http://stackoverflow.com/questions/16131193/sql-ce-code-first-migrations-problems could someone please check it and provide an answer? Thank you...
View ArticleNew Post: Big problems getting code-first migrations to work with SQL CE...
I have commented your SO question
View ArticleNew Post: Strange things with binary fields in code-first migrations
I have one last issue with getting my solution working well with code-first migrations I posted a question here:http://stackoverflow.com/questions/16135888/binary-fields-in-code-first-migrations So...
View ArticleNew Post: Big problems getting code-first migrations to work with SQL CE...
Thank you! It is solved now... I updated the SO question with a solution... david
View Article