日期:2014-05-17 浏览次数:20914 次
public Article { public int ArticleID{get;set;} public string Content{get;set;} Public User Author{get;set;} } public User { public int UserID{get;set;} public string UserName{get;set;} }
我现在用的是先根据用户名查用户,然后在根据用户查文章。这样的话应该是进行了两次查询操作。我刚接触NHibernate,所以想请教一下有没有方法根据用户名直接进行一次查询就查出文章对象的方法。