mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-11-08 02:14:53 +08:00
-
This commit is contained in:
@@ -1,21 +1,27 @@
|
||||
namespace SqlSugar
|
||||
{
|
||||
public class MySqlQueryable<T>:QueryableProvider<T>
|
||||
public class MySqlQueryable<T> : QueryableProvider<T>
|
||||
{
|
||||
public override ISugarQueryable<T> With(string 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> : QueryableProvider<T, T2>
|
||||
{
|
||||
|
||||
}
|
||||
public class MySqlQueryable<T, T2,T3> : QueryableProvider<T, T2,T3>
|
||||
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> : QueryableProvider<T, T2, T3, T4>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
{
|
||||
return this;
|
||||
}
|
||||
|
||||
public override ISugarQueryable<T> PartitionBy(string groupFileds)
|
||||
{
|
||||
this.GroupBy(groupFileds);
|
||||
return this;
|
||||
}
|
||||
}
|
||||
public class SqliteQueryable<T,T2> : QueryableProvider<T,T2>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user