Composing Entity Framework Fluent Configurations

Posted by K. Scott Allen (OdeToCode.com) on November 29, 2011

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]

Rating

not rated

Reviews

There are currently no comments or reviews.

Submit a review:

Login required.