A way to configure Entity Framework beyond its conventions with a method chaining API
I have seen lots of examples in LINQ to SQL examples on how to do a join in query syntax …
linq-to-sql ef-fluent-apiI'm trying to build an EF Entity with Code First, and an EntityTypeConfiguration using fluent API. creating primary keys is …
c# entity-framework entity-framework-6 ef-fluent-apiWe want to use one to one optional relationship using Entity Framework Code First. We have two entities. public class …
c# entity-framework ef-code-first one-to-one ef-fluent-apiWhen creating a database using Entity Framework code-first, a lot of the database model is can be extracted from the …
entity-framework ef-fluent-apiI keep hearing about the Entity Framework fluent-api but I am struggling to find a good reference on this. What …
c# entity-framework orm entity-framework-4 ef-fluent-apiI've searched stackoverflow for a proper solution on generating a many-to-many relationship, using EF Core, Code first and Fluent API. …
c# entity-framework code-first ef-fluent-apiHow can I set the default value using EntityFramework Code First FluentAPI for bool property? Something like: Property(l => …
c# entity-framework ef-code-first ef-fluent-apiBelow is my model: public class TMUrl { //many other properties //only property with type Keyword public List<Keyword> …
c# entity-framework many-to-many ef-fluent-apiI have a situation where I have a type with a property of type object, eg. public class MyType { public …
c# entity-framework wcf ef-fluent-apiIs there any possible configuration to set database column ordering in entity framework code first approach..? All of my entity …
c# entity-framework ef-code-first entity-framework-6 ef-fluent-api