gpt4 book ai didi

Linq - Orderby 未排序

转载 作者:行者123 更新时间:2023-12-04 06:54:29 27 4
gpt4 key购买 nike

我有一个 linq 查询,无论出于何种原因,它都没有像我期望的那样返回订购。任何人都可以指出我为什么以及我做错了什么的正确方向吗?

代码如下:

List<TBLDESIGNER> designer = null;

using (SOAE strikeOffContext = new SOAE())
{
//Invoke the query
designer = AdminDelegates.selectDesignerDesigns.Invoke(strikeOffContext).ByActive(active).ByAdmin(admin).ToList();
}

代表:
public static Func<SOAE, IQueryable<TBLDESIGNER>> selectDesignerDesigns =
CompiledQuery.Compile<SOAE, IQueryable<TBLDESIGNER>>(
(designer) => from c in designer.TBLDESIGNER.Include("TBLDESIGN")
orderby c.FIRST_NAME ascending
select c);

按事件过滤:
public static IQueryable<TBLDESIGNER> ByActive(this IQueryable<TBLDESIGNER> qry, bool active)
{
//Return the filtered IQueryable object
return from c in qry
where c.ACTIVE == active
select c;

}

按管理员过滤:
public static IQueryable<TBLDESIGNER> ByAdmin(this IQueryable<TBLDESIGNER> qry, bool admin)
{
//Return the filtered IQueryable object
return from c in qry
where c.SITE_ADMIN == admin
select c;

}

想知道过滤有没有关系??

提前致谢,
比利

最佳答案

Wondering if the filtering has anything to do with it??



是的,一个 .Where(documented丢弃任何前面的 .OrderBy(在 LINQ 到实体。

关于Linq - Orderby 未排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2701300/

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