标签:
//[Table("Customers")] public class Customer { //[Key] public System.Guid Id { get; set; } public int Number { get; set; } public string Name { get; set; } public System.DateTime RegDate { get; set; } } public class CrmDbContext : DbContext { public CrmDbContext() : base("Crm") { } public DbSet<Customer> Customers { get; set; } }
标签:
原文地址:http://www.cnblogs.com/tengguang/p/4542865.html