New Post: Multi-tenancy and connection pool
Hi, We have developed a multi-tenant application using EF 4.3 Code First Model, where each tenant will have their on separate database. Since, we are expecting bit high number of tenants, we want to...
View ArticleNew Post: Basic full text support,or how to roll my own binding to a native...
Maybe http://msdn.microsoft.com/en-US/data/jj592907 ?
View ArticleNew Post: Basic full text support,or how to roll my own binding to a native...
That only solves part of the problem. I have a system that is using LINQ expressions to compose queries with ordering, paging, and other optional search criteria. I need to be able to compose full text...
View ArticleNew Post: EF 6 BETA?
Seconded. A general idea when you plan a final release would be welcome. I am stuck in EF5 hell with some elements (mostly the inability to properly work with an open connection that locks the objects...
View ArticleNew Post: Recursion and pattern matching
Hello, F#-language is very powerful .NET-language. It uses mainly combination of recursion and pattern matching. SQL has also support for recursion * and pattern matching *. Both operations are...
View ArticleNew Post: Multi-tenancy and connection pool
The provider model in EF6 has changed. First of all you need to use an EF6 provider. If you are using Sql Server the EF6 Sql Server provider is included in the EF6 package. Since the wrapping provider...
View ArticleNew Post: When EF6 final will be released
there is nothing on the development world more important right now (if you develop for the enterprise) than the final release of Entity Framework 6 so we can push it to our customers in their...
View ArticleNew Post: SnubbingTheSnorkeling aka Interception logging
In reviewing worldlogsnorkellingchampion I wonder about the introduction of the TextWriter directly and LogParameter method. It seems to me a might-bit heavy-handed to be deciding the formatting of the...
View ArticleNew Post: SnubbingTheSnorkeling aka Interception logging
@IDisposable Thanks for providing feedback. The idea behind the Log property is to provide a very easy to use default logging mechanism. However, this is just a façade on top of several building...
View ArticleNew Post: Building blocks for interception
@Unai Thanks for the feedback. The reason that AddInterceptor is not on DbConfiguration is that DbConfiguration is about setting up configuration for EF in the app domain such that it can be done in...
View ArticleNew Post: Code First View Generation Generating Different Hash Values
Sorry if this is not the correct place for this post but it has been up on the entity framework forum and stackoverflow for over a week and I have not got a response, and I consider this a major issue...
View ArticleNew Post: Code First View Generation Generating Different Hash Values
This would indicate that the edmx file you use in the development is different than the one in production. Can you diff the two and see if there are any differences?
View ArticleNew Post: Code review of E
Regarding changeset e (update logging/interception based on design meeting decisions): Any chance we could use DateTime.UtcNow instead of DateTime.Now in the logging? Seems like we're in "database...
View ArticleNew Post: Code review of E
@IDisposableI’ll bring this up in the design meeting and see what the rest of the team feels.If you want to use an interface where you have control then you can do that by implementing...
View ArticleNew Post: Code review of E
(1.) Excellent... either way, just something to bring up now that it'll surface somewhere :) (2.) I understand you wanting it as simple as possible. I'll build my version and let you see where I'm...
View ArticleNew Post: Code First View Generation Generating Different Hash Values
We're using code first so its not different edmx files causing the problem, also all of our test systems are 32 bit so they are running the same architecture. We also tried removing the partial classes...
View ArticleNew Post: Code First View Generation Generating Different Hash Values
You could try troubleshooting it with EdmxWriter.WriteEdmx. Dump the edmx on both machines and compare if there are any differences - this might give you a hint why your views don't work. Also make...
View ArticleNew Post: Code First View Generation Generating Different Hash Values
It looks like its a problem with inherited types. We generated the XML data models using the power tools and compared them on two PC's and the areas where there are differences were on types that we...
View ArticleNew Post: Code First View Generation Generating Different Hash Values
Yes. I think I saw on stackoverflow someone commenting that inheritance can also break views. I don't know of any good workaround for this bug. Using edmx file with Code First may help but is kind...
View ArticleNew Post: NotMapped Attribute in EF 5
I have a situation where our team is attempting to generate our DBContext class. The problem we've run into is that we are unable to guarantee our base types are discovered before our derived types. It...
View Article