gpt4 book ai didi

c# - Linq to NHibernate OrderBy 枚举值

转载 作者:行者123 更新时间:2023-11-30 14:36:14 26 4
gpt4 key购买 nike

我有以下枚举,它描述了一个项目的状态和一个代表该项目的对象。

public Enum Status
{
Sent,
Received,
UnderWork,
Returned
}

public Class Item
{
public virtual int Id {get;set;}
public virtual Status CurrentStatus {get;set;}
public virtual string ItemDescription {get;set;}
public virtual int ItemNumber {get;set;}
public virtual DateTime DueDate {get;set;}
}

我需要创建一个查询,我可以在其中选择多个项目并首先按 CurrentStatus 属性对它们进行排序,然后按 DueDate 属性对它们进行排序。困难在于我想按 CurrentStatus 进行排序,方法是将所有具有返回状态的项目放在最后,同时按其 DueDate 订购,然后仅按 DueDate 订购所有其他项目并忽略 CurrentStatus。

所以数据列表如下:

ID | CurrentStatus | ItemDescription | ItemNumber | DueDate
-------------------------------------------------------------
1 | Returned | Description1 | 123456 | 16/01/2012
2 | Sent | Description2 | 234567 | 13/01/2012
3 | Returned | Description3 | 345678 | 22/01/2012
4 | Received | Description4 | 456789 | 03/01/2012
5 | UnderWork | Description5 | 567891 | 10/01/2012
6 | UnderWork | Description6 | 678901 | 17/01/2012
7 | Sent | Description7 | 789012 | 09/01/2012
8 | Sent | Description8 | 890123 | 28/01/2012
9 | Returned | Description9 | 901234 | 30/01/2012
10 | Received | Description10 | 012345 | 15/01/2012

将使用类似以下 Linq to NHibernate 的方式进行查询(这给了我一个 QuerySyntaxException:抛出类型为 'Antlr.Runtime.NoViableAltException' 的异常。)请注意在 LINQPad 中使用此表达式我可以获得我的结果需要。

var workList = session.Query<Item>()
.OrderBy(item => item.Status == Status.Returned)
.ThenBy(item => item.DueDate)
.ToList();

我希望按以下顺序获得数据列表:

ID | CurrentStatus | ItemDescription | ItemNumber | DueDate
-------------------------------------------------------------
4 | Received | Description4 | 456789 | 03/01/2012
7 | Sent | Description7 | 789012 | 09/01/2012
5 | UnderWork | Description5 | 567891 | 10/01/2012
2 | Sent | Description2 | 234567 | 13/01/2012
10 | Received | Description10 | 012345 | 15/01/2012
6 | UnderWork | Description6 | 678901 | 17/01/2012
8 | Sent | Description8 | 890123 | 28/01/2012
1 | Returned | Description1 | 123456 | 16/01/2012
3 | Returned | Description3 | 345678 | 22/01/2012
9 | Returned | Description9 | 901234 | 30/01/2012

这可以使用 Linq to NHibernate 来完成吗?如果是这样,我需要对查询进行哪些更改?我也期待 SKip() 和 Take() 所以我不能只从数据库中提取所有内容。我正在使用 SQL Server 2008 Express、NHibernate 3.3.0.4000 和 Fluent Nhibernate 1.3.0.727。

编辑

只是详细说明我希望如何进行排序。我希望将具有退回状态的项目推到列表的底部,在那里它们按截止日期排序。我希望所有其他项目不按状态排序,只按截止日期排序,因此它们将始终排在退回项目之前。这是因为任何返回的东西都不再在工作过程中,我希望它被推到列表的末尾。所以在这种情况下,返回的状态值是无关紧要的。

最佳答案

这对我有用。 NHibernate 应该如何处理状态并生成 SQL case 语句

var workList = session.Query<Item>()
.OrderBy(item => item.CurrentStatus == Status.Returned ? 1 : 0)
.ThenBy(item => item.DueDate)
.ToList();

关于c# - Linq to NHibernate OrderBy 枚举值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10819653/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com