C# NHibernate分层递归查询

C# NHibernate分层递归查询,c#,mysql,sql,nhibernate,orm,C#,Mysql,Sql,Nhibernate,Orm,我正在为我的应用程序使用NHibernate ORM和MySql数据库。我对我的类别使用简单的嵌套表模型 我的表sql: CREATE TABLE `cat` ( `id` int(11) NOT NULL AUTO_INCREMENT, `catId` int(11) DEFAULT '0', `dr` bit(1) DEFAULT NULL, `st` datetime DEFAULT NULL, PRIMARY KEY (`id`), ) ENGINE=MyISAM A

我正在为我的应用程序使用NHibernate ORM和MySql数据库。我对我的类别使用简单的嵌套表模型

我的表sql:

CREATE TABLE `cat` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `catId` int(11) DEFAULT '0',
  `dr` bit(1) DEFAULT NULL,
  `st` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
我的类别类别:

   public class cat
    {
        [Key]
        public virtual int id { get; set; }
        public virtual int catId { get; set; }
        public virtual bool dr { get; set; }
        public virtual DateTime st { get; set; }

        [ForeignKey("catId")]
        public virtual IList<cat> cats { get; set; }
    }
如何使用NH执行此查询:

select t2.* from (select id from cat where catId=0 and dr=1) t1 join 
cat t2 On(t1.id=t2.catId) where t2.st<Now() and t2.dr=1;

            var q2 = db.Query<cat>()
                .Where(x => x.catId== 0 && x.dr == true);

            q2 = from t1 in q2
                 join t2 in db.Query<cat>() on t1.id equals t2.catId
                 where t2.st< DateTime.Now && t2.dr== true
                 select t2;

            //for result list
            var myList = q2.ToList();
我可以用NHibernate&Linq进行查询。也许它能帮助一些人

            var q2 = db.Query<cat>()
                .Where(x => x.catId== 0 && x.dr == true);

            q2 = from t1 in q2
                 join t2 in db.Query<cat>() on t1.id equals t2.catId
                 where t2.st< DateTime.Now && t2.dr== true
                 select t2;

            //for result list
            var myList = q2.ToList();