mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-26 13:43:10 +08:00
Update Subquery.First
This commit is contained in:
@@ -195,6 +195,10 @@ namespace SqlSugar
|
||||
{
|
||||
return default(TResult);
|
||||
}
|
||||
public TResult First<TResult>(Func<T, TResult> selector, bool isAutoDto) where TResult : class, new()
|
||||
{
|
||||
return default(TResult);
|
||||
}
|
||||
public TResult First<TResult>() where TResult : class, new()
|
||||
{
|
||||
return default(TResult);
|
||||
|
||||
@@ -284,6 +284,10 @@ namespace SqlSugar
|
||||
{
|
||||
return null;
|
||||
}
|
||||
public TResult First<TResult>(Func<T1, T2, T3,T4, TResult> selector, bool isAutoDto) where TResult : class, new()
|
||||
{
|
||||
return default(TResult);
|
||||
}
|
||||
public TResult Max<TResult>(Func<T1, T2, T3,T4, TResult> expression)
|
||||
{
|
||||
return default(TResult);
|
||||
@@ -372,6 +376,10 @@ namespace SqlSugar
|
||||
{
|
||||
return null;
|
||||
}
|
||||
public TResult First<TResult>(Func<T1,T2,T3, TResult> selector, bool isAutoDto) where TResult : class, new()
|
||||
{
|
||||
return default(TResult);
|
||||
}
|
||||
public TResult Max<TResult>(Func<T1, T2,T3, TResult> expression)
|
||||
{
|
||||
return default(TResult);
|
||||
@@ -456,6 +464,10 @@ namespace SqlSugar
|
||||
{
|
||||
return null;
|
||||
}
|
||||
public TResult First<TResult>(Func<T1,T2, TResult> selector, bool isAutoDto) where TResult : class, new()
|
||||
{
|
||||
return default(TResult);
|
||||
}
|
||||
public TResult Max<TResult>(Func<T1,T2, TResult> expression)
|
||||
{
|
||||
return default(TResult);
|
||||
|
||||
Reference in New Issue
Block a user