gpt4 book ai didi

entity-framework - 返回空的 IQueryable<>

转载 作者:行者123 更新时间:2023-12-03 11:44:49 24 4
gpt4 key购买 nike

我有这个方法来尝试获取事物列表:

 private static IQueryable<Thing> GetThings(int thingsType)
{
try
{
return from thing in entities.thing.Include("thingStuff")
select thing;
}
catch (Exception exception)
{
return new EnumerableQuery<Thing>(?????);
}
}

}

如果由于某种原因无法运行查询,我想返回一个空的 IQueryable。我不想返回 NULL,因为这可能会破坏调用代码。这可能还是我完全错了?

最佳答案

这些答案很好并且确实有效,但是我一直觉得使用 Empty 而不是创建新列表更干净:

Enumerable.Empty<Thing>().AsQueryable();

关于entity-framework - 返回空的 IQueryable<>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13867794/

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