c# Programming Glossary: dbmodelbuilder
Ignoring a class property in Entity Framework 4.1 Code First http://stackoverflow.com/questions/10385248/ignoring-a-class-property-in-entity-framework-4-1-code-first DBContext class protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Entity Customer .Ignore t t.LastName..
Unhandled Exception after Upgrading to Entity Framework 4.3.1 http://stackoverflow.com/questions/10441924/unhandled-exception-after-upgrading-to-entity-framework-4-3-1 set Configuration protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Entity Lesson .ToTable Lessons modelBuilder.Entity..
Entity Framework code first many-to-many mapping table http://stackoverflow.com/questions/11382783/entity-framework-code-first-many-to-many-mapping-table OnModelCreating protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Entity Recipe .HasMany x x.Members..
Entity Framework: Duplicate Records in Many-to-Many relationship http://stackoverflow.com/questions/11646299/entity-framework-duplicate-records-in-many-to-many-relationship base connString protected override void OnModelCreating DbModelBuilder modelbuilder Fluent API Plural Removal modelbuilder.Conventions.Remove..
How to create custom additional fields in UserProfile in MVC4 http://stackoverflow.com/questions/12435252/how-to-create-custom-additional-fields-in-userprofile-in-mvc4 get set protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Conventions.Remove PluralizingTableNameConvention..
Soft Delete Entity Framework Code First http://stackoverflow.com/questions/12698793/soft-delete-entity-framework-code-first as an entity protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Entity Foo .Map m m.Requires IsDeleted..
EntitySet System.InvalidOperationException - “the entity type is not part of the model for the current context” http://stackoverflow.com/questions/13634819/entityset-system-invalidoperationexception-the-entity-type-is-not-part-of-the ConnectionString protected override void OnModelCreating DbModelBuilder modelBuilder mappings public DbSet Meal Meals get set public..
Entity Framework Code First: decimal precision and scale http://stackoverflow.com/questions/3504660/entity-framework-code-first-decimal-precision-and-scale changes from EF 4.1 onwards the ModelBuilder class is now DbModelBuilder and there is now a DecimalPropertyConfiguration.HasPrecision.. protected override void OnModelCreating System.Data.Entity.DbModelBuilder modelBuilder modelBuilder.Entity Class .Property object object.property..
Entity Framework Code First - two Foreign Keys from same table http://stackoverflow.com/questions/5559043/entity-framework-code-first-two-foreign-keys-from-same-table DbContext ... protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Entity Match .HasRequired m m.HomeTeam..
How do I prevent decimal values from being truncated to 2 places on save using the EntityFramework 4.1 CodeFirst? [duplicate] http://stackoverflow.com/questions/6629263/how-do-i-prevent-decimal-values-from-being-truncated-to-2-places-on-save-using-t Metrics get set protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Entity Metrics .Property x x.PPM..
ef code first: get entity table name without dataannotations http://stackoverflow.com/questions/7008212/ef-code-first-get-entity-table-name-without-dataannotations Is there a way to get table info defined with DbModelBuilder something like entity.GetType .GetTableName Max EDIT id like.. Here it is protected override void OnModelCreating DbModelBuilder modelBuilder model mappings base.OnModelCreating modelBuilder..
Entity Framework 4.3 - TPH mapping and migration error http://stackoverflow.com/questions/9499702/entity-framework-4-3-tph-mapping-and-migration-error Parent Context protected override void OnModelCreating DbModelBuilder modelBuilder modelBuilder.Configurations.Add new ParentConfiguration.. at System.Data.Entity.DbModelBuilder.Build DbProviderManifest providerManifest DbProviderInfo providerInfo.. DbProviderInfo providerInfo at System.Data.Entity.DbModelBuilder.Build DbConnection providerConnection at System.Data.Entity.Infrastructure.EdmxWriter.WriteEdmx..
|