- 增加 ISelect`1 ToDictionary 方法查询返回字典;

This commit is contained in:
28810
2020-03-20 01:52:43 +08:00
parent a5e6573851
commit 22a2450e05
17 changed files with 246 additions and 1 deletions

View File

@ -68,7 +68,7 @@ namespace FreeSql
internal void TrackToList(object list)
{
if (list == null) return;
var ls = list as IList<TEntity>;
var ls = list as IEnumerable<TEntity>;
if (ls == null)
{
var ie = list as IEnumerable;