标签:
public class Category { [ Key ] public string TrackingKey { get; set; } public string CategoryName { get; set; } public string BlogID { get; set; } }
public class User { [Key ,DatabaseGenerated (DatabaseGeneratedOption .Identity)] public Guid UserGuid { get; set; } public string UserName { get; set; } }
public class Category { [ Key ] public string TrackingKey { get; set; } [ Required ][MaxLength (30), MinLength(5)] public string CategoryName { get; set; } public string BlogID { get; set; } public string Description { get; set; } }
public class Blog { public string ID { get; set; } public string BlogName { get; set; } public string BlogAuthor { get; set; } public virtual List < Post> Posts { get ; set ; } //导航属性 public BlogDetails Detail { get; set; } } [ ComplexType] public class BlogDetails { public string BlogDescription { get; set; } public string CreateTime { get; set; } }
标签:
原文地址:http://www.cnblogs.com/JasonShenW/p/5084363.html