Skip to content

Instantly share code, notes, and snippets.

@segor
Created December 23, 2015 11:26
Show Gist options
  • Save segor/7a39924569eaa8d37455 to your computer and use it in GitHub Desktop.
Save segor/7a39924569eaa8d37455 to your computer and use it in GitHub Desktop.
// persissted data
public class Company{
public int Id {get; set}
public string Name {get; set}
}
public class ProductContext : DbContext
{
public DbSet<Company> Companies { get; set; }
}
//....
public class CompanyBusinesObject
{
public Company Identity {get; set}
public decimal Revenue {get; set}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment