New Post: Defining entities at runtime - AddEntitySetBase is internal
@Lukazoid I have filed an issue for this so that we can consider it: https://entityframework.codeplex.com/workitem/2480 Thanks, Arthur
View ArticleNew Post: Extend MetadataWorkspace EntityType
@xaviergxf When using Code First you can annotate tables and columns using the AddTableAnnotation and AddColumAnnotation APIs. Beyond this there is no built-in mechanism to extend MetadataWorkspace in...
View ArticleNew Post: Unable to add annotations to EntityType
@Lukazoid I have created the following issue so that we can look into this: https://entityframework.codeplex.com/workitem/2481 Thanks, Arthur
View ArticleNew Post: How can an association have more than 2 ends?
I have noticed in the code that RelationshipType has a collection of RelationshipEndMembers and AssociationType has a collection of AssociationEndMembers. In what situation would a relationship or...
View ArticleNew Post: Bug in entity naming using EF 6 Tools for VS2013
I have a table in my database called luOperatingStatus. When I reverse engineer it to POCO classes via the "Code First From Database" option of the "Entity Data Model Wizard", it generates a class file...
View ArticleNew Post: Bug in entity naming using EF 6 Tools for VS2013
This is due to a bug in the pluralization/singularization service which is used by default when reverse engineering. The simplest solution is to disable it by unchecking the "Pluralize or singularize...
View ArticleNew Post: Is it possible to extend the Migration Scaffolding to generate code...
Along the same lines, I would like to see Indexing via fluent api, specifically from EntityTypeConfiguration I am able and willing to add this as a community contribution if this is something the team...
View ArticleNew Post: 'View Entity Data Model (Read-Only)' fails with subsequent...
Example Solution: Foo - entities Foo.Model - references Foo, Entity Framework; contains FooContext Bar - more entities Bar.Model - references Bar, Entity Framework; contains BarContext Startup -...
View ArticleNew Post: Writing a EF6 provider
Hello, I have a question about writing a Entity Framework 6 provider. Currently we use the Interbase XE3 database and Delphi XE3 as main language. We are investigating the possibilities of gradually...
View ArticleNew Post: Writing a EF6 provider
Hello Rein, Yes, it should be feasible to write an EF 6.x provider for most relational databases. It is not a trivial task but in most cases it should be easier than writing your own O/RM and or your...
View ArticleNew Post: Writing a EF6 provider
Hi, I think you could use Firebird's driver (https://github.com/cincuranet/NETProvider) as a starting point. That would make it way shorter for you. Feel free to drop me a line if you have a question....
View ArticleNew Post: Writing a EF6 provider
Hi, Thank you for the responses. I dont think it is possible to easily migrate to Firebird. Our Delphi application is consists of hundreds of thousands of lines of code. All in the 'code on the form'...
View ArticleNew Post: Multi-Tenant With Code First
hi ,can you help me , I have created sample multitenant application by using seperate schema shared database , 1) in my main site ,tenant is registering,so at that i want to allocate the schema ,domain...
View ArticleNew Post: EF6 Code First: All string properties are output as unicode: false...
I can confirm the exact same problem usingEntityFramework 6.1.1 MySql.ConnectorNET.Entity 6.8.3.2Case A Fluent API:modelBuilder.Entity<Person>().Property(e => e.Name); Resulting migration:Name...
View ArticleNew Post: Multi-Tenant With Code First
Hello Mohamed, It's hard to understand your problems and questions. Have you read my posting at all? What do you mean with "But properties is global for all tenant when registering"? What do you mean...
View ArticleNew Post: Multi-Tenant With Code First
Hi Tobias, Thanks For your reply,But i have Still problem [Multitenant].[1ec355cd-fa0c-45e9-9b41-831b1bf8a0b8].[Tenant1] [Multitenant].[232c355cd-fa0c-45e9-9b41-831bdsf342543543].[Tenant2]...
View ArticleNew Post: Writing a EF6 provider
Hi, the application does not matter. I would say 99% of IB features is available in FB (and some more). InterBase Express works with Firebird as well, no problem with that. Just saying.
View ArticleNew Post: Multi-Tenant With Code First
Hello Mohamed, I really have problems to understand some of your questions!The usecase Maybe you want to use that stuff differently than I am. My usecase is as follows:one code first database model...
View ArticleNew Post: System.Data.Entity.SqlServer.SqlVersion
Why SqlVersion is an enum and not a Type: "System.Version"? The SqlVersionUtils looks very ugly and very easy to make obsolete with a lot of if..else... It would be better handled in this way:...
View ArticleNew Post: How do i download the source code for a specific version of EF?
I need the source code for version 6.1 for debugging but the master branch seems to contain "latest" including merge from 6.1.2 beta
View Article