NHibernate QueryOver 并选择 属性 是 ILIST 且列表计数 >= 1 的行
NHibernate QueryOver and selecting rows where a propery is an ILIST and the list count >= 1
我想要 select 行,其中 属性 项目是 IList
本身有行。在 SQL 中它很容易计数 >= 1 但在 NHibernate 中它让我望而却步。
尝试了很多方法
public class Sale
{
private IList<Items> _items;
public Sale()
{
_items = new List<Item>();
}
public Guid SaleId { get; set; }
public string SaleNumber { get; set; }
public string Location { get; set; }
public DateTime? SaleDateTime { get; set; }
public IList<Item> Items => _items;
}
public class Item
{
public Guid ItemId { get; set; }
public string description { get; set; }
}
var testdata = _session.QueryOver<Sale>()
.Where(Restrictions.Ge(
Projections.Property<Sale>
(m => m.Items.Count), 1))
.ReadOnly()
.ListAsync();
Count
无法识别
从技术上讲,如果您执行内部联接,您将不会收到任何 Sale
没有任何 Item
记录的记录。
所以作为一个非常简单的 QueryOver
你可以这样做:
var sales = session.QueryOver<Sale>()
.Inner.JoinQueryOver(x => x.Items)
.Select(Projections.RootEntity())
.TransformUsing(Transformers.DistinctRootEntity)
.List();
这是结果 SQL:
SELECT this_.SaleId as saleid1_1_0_,
this_.SaleNumber as salenumber2_1_0_,
this_.Location as location3_1_0_,
this_.SaleDateTime as saledatetime4_1_0_
FROM Sale this_
inner join Item item1_ on this_.SaleId=item1_.SaleId
我想要 select 行,其中 属性 项目是 IList
本身有行。在 SQL 中它很容易计数 >= 1 但在 NHibernate 中它让我望而却步。
尝试了很多方法
public class Sale
{
private IList<Items> _items;
public Sale()
{
_items = new List<Item>();
}
public Guid SaleId { get; set; }
public string SaleNumber { get; set; }
public string Location { get; set; }
public DateTime? SaleDateTime { get; set; }
public IList<Item> Items => _items;
}
public class Item
{
public Guid ItemId { get; set; }
public string description { get; set; }
}
var testdata = _session.QueryOver<Sale>()
.Where(Restrictions.Ge(
Projections.Property<Sale>
(m => m.Items.Count), 1))
.ReadOnly()
.ListAsync();
Count
无法识别
从技术上讲,如果您执行内部联接,您将不会收到任何 Sale
没有任何 Item
记录的记录。
所以作为一个非常简单的 QueryOver
你可以这样做:
var sales = session.QueryOver<Sale>()
.Inner.JoinQueryOver(x => x.Items)
.Select(Projections.RootEntity())
.TransformUsing(Transformers.DistinctRootEntity)
.List();
这是结果 SQL:
SELECT this_.SaleId as saleid1_1_0_,
this_.SaleNumber as salenumber2_1_0_,
this_.Location as location3_1_0_,
this_.SaleDateTime as saledatetime4_1_0_
FROM Sale this_
inner join Item item1_ on this_.SaleId=item1_.SaleId