- 增加 HzyTuple 表达式替换类;

This commit is contained in:
2881099
2020-11-02 22:24:59 +08:00
parent f3bc47feca
commit 768cbdc97a
6 changed files with 51 additions and 2 deletions

View File

@ -9,7 +9,9 @@ using System.Threading.Tasks;
namespace FreeSql
{
public partial interface ISelect0<TSelect, T1>
public partial interface ISelect0 { }
public partial interface ISelect0<TSelect, T1> : ISelect0
{
#if net40

View File

@ -54,6 +54,7 @@ namespace FreeSql
ISelect<T1, T2> Where(Expression<Func<T1, T2, bool>> exp);
ISelect<T1, T2> WhereIf(bool condition, Expression<Func<T1, T2, bool>> exp);
ISelect<T1, T2> Where(Expression<Func<NativeTuple<T1, T2>, bool>> exp);
ISelectGrouping<TKey, NativeTuple<T1, T2>> GroupBy<TKey>(Expression<Func<T1, T2, TKey>> exp);