Created
December 23, 2015 11:26
-
-
Save segor/7a39924569eaa8d37455 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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