mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 增加 ToDataTableByPropertyNameAsync 方法;
This commit is contained in:
@ -18,6 +18,7 @@ namespace FreeSql
|
||||
#if net40
|
||||
#else
|
||||
Task<DataTable> ToDataTableAsync(string field = null, CancellationToken cancellationToken = default);
|
||||
Task<DataTable> ToDataTableByPropertyNameAsync(string[] properties, CancellationToken cancellationToken = default);
|
||||
Task<Dictionary<TKey, T1>> ToDictionaryAsync<TKey>(Func<T1, TKey> keySelector, CancellationToken cancellationToken = default);
|
||||
Task<Dictionary<TKey, TElement>> ToDictionaryAsync<TKey, TElement>(Func<T1, TKey> keySelector, Func<T1, TElement> elementSelector, CancellationToken cancellationToken = default);
|
||||
Task<List<T1>> ToListAsync(bool includeNestedMembers = false, CancellationToken cancellationToken = default);
|
||||
|
Reference in New Issue
Block a user