程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> nhibernate-Nhibernate使用CreateCriteria 如何實現 exists

nhibernate-Nhibernate使用CreateCriteria 如何實現 exists

編輯:編程綜合問答
Nhibernate使用CreateCriteria 如何實現 exists
 public IList<Customer> QueryAllCustomerHasOrdersByHSql() {
            return Session.CreateQuery("from Customer c where exists( from Order a where a.Customer=c.Id)").List<Customer>();

        }

        public IList<Customer> QueryAllCustomerHasOrdersBySql() {
            return Session.CreateSQLQuery("select c.* from Customer c where exists(select b.Customer from `Order` b where b.Customer=c.CustomerId)")
                .AddEntity("c",typeof(Customer)).List<Customer>();              
        }

                //public IList<Customer> QueryAllCustomerHasOrdersByCriteria() { 
        //return Session.CreateCriteria(typeof(Customer))
        //    .Add(Restrictions.In("Customer",))

        //}

如何使用 CreateCriteria Restrictions 實現上面使用SQL的查詢功能

最佳回答:


http://stackoverflow.com/questions/1752792/nhibernate-createcriteria-and-exists-clause

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved