NHibernate分层递归查询

时间:2016-12-27 17:00:14

标签: c# mysql sql nhibernate orm

我正在使用NHibernate ORM和我的APP的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;

1 个答案:

答案 0 :(得分:0)

    using NHibernate;
    using NHibernate.Criterion;
    using NHibernate.Linq;
    using NHibernate.Transform;
    using System;
    using System.Collections.Generic;
    using System.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();

我可以用NHibernate&amp; LINQ。也许可以帮助一些人。