mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Update 达梦
This commit is contained in:
parent
50de929f89
commit
cb29fe4faf
@ -13,11 +13,11 @@ namespace SqlSugar
|
||||
return this;
|
||||
}
|
||||
|
||||
public override ISugarQueryable<T> PartitionBy(string groupFileds)
|
||||
{
|
||||
this.GroupBy(groupFileds);
|
||||
return this;
|
||||
}
|
||||
//public override ISugarQueryable<T> PartitionBy(string groupFileds)
|
||||
//{
|
||||
// this.GroupBy(groupFileds);
|
||||
// return this;
|
||||
//}
|
||||
}
|
||||
public class DmQueryable<T, T2> : QueryableProvider<T, T2>
|
||||
{
|
||||
|
@ -19,6 +19,11 @@ namespace SqlSugar
|
||||
}
|
||||
public override string ToSqlString()
|
||||
{
|
||||
|
||||
if (PartitionByValue.HasValue())
|
||||
{
|
||||
return base.ToSqlString();
|
||||
}
|
||||
//Support MySql Model
|
||||
if (this.Context.CurrentConnectionConfig.MoreSettings?.DatabaseModel == DbType.MySql)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user