有没有办法使用 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/

10-11 17:30