A way to configure Entity Framework beyond its conventions with a method chaining API
I have started with C# and I wanted to make my own DB. I have two models public class AModel { …
c# entity-framework ef-fluent-apiI'm building an EF6 code first model using the fluent API. My understanding is, by default, strings will be nvarchar(…
c# entity-framework ef-code-first ef-fluent-apiI am using the Repository pattern. I have a entity called Product and I want to set the minimum value …
c# entity-framework ef-code-first ef-fluent-apiHow to configure One-to-One or ZeroOrOne-to-One relationships in Entity Framework 7 Code First using Data Annotations or Fluent Api?
entity-framework ef-code-first entity-framework-core ef-fluent-apiI'm having trouble with reverse navigation on one of my entities. I have the following two objects: public class Candidate { […
c# entity-framework ef-code-first ef-fluent-apiI need to create fluentapi one or zero to one reference and have navigation properties on both of entities. EntityTwo …
c# entity-framework ef-code-first ef-fluent-apiIn EF Core 2.0, we have the ability to derive from IEntityTypeConfiguration for cleaner Fluent API mappings (source). How can I …
c# asp.net-core entity-framework-core ef-fluent-api ef-core-2.0I have a base model: public abstract class Status { public string updateUserName { get; set; } } Then a model which extends the …
sql-server ef-code-first entity-framework-core asp.net-core-2.0 ef-fluent-apiI'm having issues getting an optional one-to-many relationship to work. My model is: public class Person { public int Identifier { get; …
c# entity-framework entity-framework-6 ef-fluent-apiI just started moving my MVC5 project with EF6x to MVC Core and EF Core but have a big …
c# entity-framework-core ef-fluent-api ef-core-2.0