mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-30 22:10:22 +08:00
Update select join
This commit is contained in:
parent
a2a1a18454
commit
be9038d22a
@ -186,6 +186,10 @@ namespace SqlSugar
|
||||
}
|
||||
public class Subqueryable<T1, T2, T3, T4, T5, T6> : Subqueryable<T1> where T1 : class, new()
|
||||
{
|
||||
public string SelectStringJoin(Func<T1, T2, T3, T4, T5,T6, string> expression, string separator)
|
||||
{
|
||||
return default(string);
|
||||
}
|
||||
public new Subqueryable<T1, T2, T3, T4, T5,T6> AsWithAttr()
|
||||
{
|
||||
return this;
|
||||
@ -242,6 +246,10 @@ namespace SqlSugar
|
||||
}
|
||||
public class Subqueryable<T1, T2, T3, T4, T5> : Subqueryable<T1> where T1 : class, new()
|
||||
{
|
||||
public string SelectStringJoin(Func<T1, T2, T3, T4,T5, string> expression, string separator)
|
||||
{
|
||||
return default(string);
|
||||
}
|
||||
public new Subqueryable<T1, T2, T3, T4,T5> AsWithAttr()
|
||||
{
|
||||
return this;
|
||||
|
Loading…
Reference in New Issue
Block a user