mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-07-01 01:48:15 +08:00
修复 IEnumerable.GetEnumerator 没有实现的问题
This commit is contained in:
@ -40,7 +40,10 @@ namespace FreeSql.Extensions.Linq
|
|||||||
yield return item;
|
yield return item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
|
IEnumerator IEnumerable.GetEnumerator()
|
||||||
|
{
|
||||||
|
return (IEnumerator)GetEnumerator();
|
||||||
|
}
|
||||||
|
|
||||||
public Type ElementType => typeof(QueryableProvider<TCurrent, TSource>);
|
public Type ElementType => typeof(QueryableProvider<TCurrent, TSource>);
|
||||||
public Expression Expression => _expression;
|
public Expression Expression => _expression;
|
||||||
|
Reference in New Issue
Block a user