是我自己的问题,结贴!
是我自己的问题,结贴!
public role_info { public int id { get; set; } public string title { get; set; } public virtual ICollection<news_class> news_classes{ get; set; } } public news_class { public int id { get; set; } public string title { get; set; } public virtual ICollection<news_info> newslist { get; set; } } public news_info { public int id { get; set; } public string title { get; set; } public DateTime datetime { get; set; } }
逐层点击展开查询:
db.role_info.Include("news_class").Include("news_info").Where(r=>r.id==xxx);
你的需求没完全看懂,就不瞎说了。
问一个问题,如果是SQL语句,你会写吗?