gpt4 book ai didi

sqlite-net-extensions - 有没有办法限制/分页结果集

转载 作者:行者123 更新时间:2023-12-03 02:31:25 25 4
gpt4 key购买 nike

有没有办法使用 GetAllWithChildren() 或 GetAll() 或 GetAllWithChildrenAsync() 或 GetAllAsync() 来限制/分页结果集。

这些方法接受过滤表达式,但似乎没有任何直接的方法来设置显式限制器或 orderby 子句。

最佳答案

GetAllWithChildren 方法只是一个方便的方法。要执行自定义查询,您必须使用Table 方法。使用您想要扩展现有 GetAllWithChildren 的功能来实现您自己的 fetch 方法应该不难:

public static class OrderExtensions {
public static List<T> GetAllWithChildren<T>(this SQLiteConnection conn,
Expression<Func<T, bool>> filter = null,
Expression<Func<T, object>> orderExpr = null,
int? limit = null,
int? offset = null,
bool recursive = false) where T: class
{
var elements = conn.Table<T>();
if (filter != null) {
elements = elements.Where(filter);
}
if (orderExpr != null) {
elements = elements.OrderBy(orderExpr);
}
if (offset != null) {
elements = elements.Skip(offset.Value);
}
if (limit != null) {
elements = elements.Take(limit.Value);
}

var list = elements.ToList();

foreach (T element in list)
{
conn.GetChildren(element, recursive);
}

return list;
}
}

然后你可以像这样使用它:

    conn.GetAllWithChildren<MyClass>(
filter: o => o.Name != "",
orderBy: o => o.Name,
limit: 10, offset: 20);

或不太冗长(且描述性较少)的版本:

    conn.GetAllWithChildren<MyClass>(o => o.Name != "", o => o.Name, 10, 20);

关于sqlite-net-extensions - 有没有办法限制/分页结果集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34405106/

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