gpt4 book ai didi

linq - 在 DocumentDb 中使用 ThenBy 显示错误

转载 作者:行者123 更新时间:2023-12-02 07:49:55 24 4
gpt4 key购买 nike

DocumentDb是否支持多个OrderBy和ThenBy?我一直在使用此查询的两种方法,包括两个 OrderBy、一个 orderBy 和一个 ThenBy,但每次它都说不支持 ThenBy。有没有办法在多个字段中使用 order by ?

var Rests=from f in _client.CreateDocumentQuery<Restraunt>(_collectionUri)  orderby  f.RestName,f.RestId select  f;

var Rests=from f in _client.CreateDocumentQuery<Restraunt>(_collectionUri)
.OrderBy(f.RestName).ThenBy(f.RestId);

最佳答案

Is there any way to use order by with multiple fields?

目前还没有,没有。这是documented limitation ,尽管听起来好像正在做相关工作:

You cannot perform the following:

  • [...] Order By multiple properties (coming soon).

关于linq - 在 DocumentDb 中使用 ThenBy 显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36395081/

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