- 增加 WithMemory 基于内存查询;

This commit is contained in:
2881099
2022-08-01 10:06:42 +08:00
parent 991ea968fc
commit 56d744559e
4 changed files with 41 additions and 0 deletions

View File

@ -369,6 +369,12 @@ namespace FreeSql
/// <param name="parms">参数</param>
/// <returns></returns>
ISelect<T1> WithSql(string sql, object parms = null);
/// <summary>
/// 实现 select .. from ( select .. UNION ALL select .. ) a 这样的功能(基于内存数据)
/// </summary>
/// <param name="source">内存数据</param>
/// <returns></returns>
ISelect<T1> WithMemory(IEnumerable<T1> source);
/// <summary>
/// 嵌套查询 select * from ( select ... from table ... ) a