Composing Entity Framework Fluent Configurations
The canonical example for fluent configuration with the Entity Framework is to take a few simple entity definitions:
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public byte[] Version { get; protected set; }
}
... and configure them all inside of the
... [read more]
Submit a review:
Login required.