This commit is contained in:
sunkaixuan
2017-07-14 01:14:25 +08:00
parent e09585aff9
commit 51574c06ef
2 changed files with 16 additions and 4 deletions

View File

@@ -6,6 +6,12 @@
{ {
return this; 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>
{ {

View File

@@ -6,6 +6,12 @@
{ {
return this; return this;
} }
public override ISugarQueryable<T> PartitionBy(string groupFileds)
{
this.GroupBy(groupFileds);
return this;
}
} }
public class SqliteQueryable<T,T2> : QueryableProvider<T,T2> public class SqliteQueryable<T,T2> : QueryableProvider<T,T2>
{ {