73 lines
2.1 KiB
C#
73 lines
2.1 KiB
C#
namespace SqlSugar
|
|
{
|
|
public class MySqlQueryable<T> : QueryableProvider<T>
|
|
{
|
|
public override ISugarQueryable<T> With(string withString)
|
|
{
|
|
if (withString == null)
|
|
{
|
|
return this;
|
|
}
|
|
if (UtilMethods.StringCheckFirstAndLast(withString.TrimStart(' ').TrimEnd(' '), "/*", "*/"))
|
|
{
|
|
QueryBuilder.TableWithString = withString;
|
|
}
|
|
else if (UtilMethods.StringCheckFirstAndLast(withString.TrimStart(' ').TrimEnd(' ').ToLower(), "force", ")"))
|
|
{
|
|
QueryBuilder.TableWithString = withString;
|
|
}
|
|
return this;
|
|
}
|
|
|
|
public override ISugarQueryable<T> PartitionBy(string groupFileds)
|
|
{
|
|
this.GroupBy(groupFileds);
|
|
return this;
|
|
}
|
|
}
|
|
public class MySqlQueryable<T, T2> : QueryableProvider<T, T2>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3> : QueryableProvider<T, T2, T3>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4> : QueryableProvider<T, T2, T3, T4>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5> : QueryableProvider<T, T2, T3, T4, T5>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5, T6> : QueryableProvider<T, T2, T3, T4, T5, T6>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5, T6, T7> : QueryableProvider<T, T2, T3, T4, T5, T6, T7>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5, T6, T7, T8> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5, T6, T7, T8,T9> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8,T9>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5, T6, T7, T8,T9,T10> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8 ,T9, T10, T11>
|
|
{
|
|
|
|
}
|
|
public class MySqlQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
|
|
{
|
|
|
|
}
|
|
}
|