DapperTableQuery<TTable> 类
Dapper查询表
public class DapperTableQuery<TTable> : TableQuery<TTable>, IDataQuery, IDataFilter, IDapperSource, ITableView, ISqlEntity where TTable : ITable
类型参数
TTable
- 继承
-
DataFilterBase<TTable, Logic>TableQuery<TTable>DapperTableQuery<TTable>
- 实现
- 继承成员
- 扩展方法
构造函数
DapperTableQuery(IExecutor, TTable, Logic)
Dapper查询表
public DapperTableQuery(IExecutor executor, TTable table, Logic query)
参数
属性
Executor
执行器
public IExecutor Executor { get; }
属性值
方法
And(Func<TTable, AtomicLogic>)
与逻辑
public DapperTableQuery<TTable> And(Func<TTable, AtomicLogic> query)
参数
query
Func<TTable, AtomicLogic>
返回
- DapperTableQuery<TTable>
Apply(Func<Logic, TTable, Logic>)
查询
public DapperTableQuery<TTable> Apply(Func<Logic, TTable, Logic> query)
参数
返回
- DapperTableQuery<TTable>
Or(Func<TTable, AtomicLogic>)
或逻辑
public DapperTableQuery<TTable> Or(Func<TTable, AtomicLogic> query)
参数
query
Func<TTable, AtomicLogic>
返回
- DapperTableQuery<TTable>