mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-22 20:13:41 +08:00
Update select join
This commit is contained in:
@@ -186,6 +186,10 @@ namespace SqlSugar
|
|||||||
}
|
}
|
||||||
public class Subqueryable<T1, T2, T3, T4, T5, T6> : Subqueryable<T1> where T1 : class, new()
|
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()
|
public new Subqueryable<T1, T2, T3, T4, T5,T6> AsWithAttr()
|
||||||
{
|
{
|
||||||
return this;
|
return this;
|
||||||
@@ -242,6 +246,10 @@ namespace SqlSugar
|
|||||||
}
|
}
|
||||||
public class Subqueryable<T1, T2, T3, T4, T5> : Subqueryable<T1> where T1 : class, new()
|
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()
|
public new Subqueryable<T1, T2, T3, T4,T5> AsWithAttr()
|
||||||
{
|
{
|
||||||
return this;
|
return this;
|
||||||
|
Reference in New Issue
Block a user