mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-02 20:02:47 +08:00
-
This commit is contained in:
parent
03a7ef5814
commit
689191fe20
@ -190,7 +190,7 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
if (this.Context.IsSystemTablesConfig)
|
if (this.Context.IsSystemTablesConfig)
|
||||||
{
|
{
|
||||||
return this.Context.DbMaintenance.GetPrimaries(this.EntityInfo.DbTableName);
|
return this.Context.DbMaintenance.GetPrimaries(this.Context.EntityProvider.GetTableName(this.EntityInfo.EntityName));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -201,7 +201,7 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
if (this.Context.IsSystemTablesConfig)
|
if (this.Context.IsSystemTablesConfig)
|
||||||
{
|
{
|
||||||
return this.Context.DbMaintenance.GetIsIdentities(this.EntityInfo.DbTableName);
|
return this.Context.DbMaintenance.GetIsIdentities(this.Context.EntityProvider.GetTableName(this.EntityInfo.EntityName));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -252,7 +252,7 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
if (this.Context.IsSystemTablesConfig)
|
if (this.Context.IsSystemTablesConfig)
|
||||||
{
|
{
|
||||||
return this.Context.DbMaintenance.GetPrimaries(this.EntityInfo.DbTableName);
|
return this.Context.DbMaintenance.GetPrimaries(this.Context.EntityProvider.GetTableName(this.EntityInfo.EntityName));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -263,7 +263,7 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
if (this.Context.IsSystemTablesConfig)
|
if (this.Context.IsSystemTablesConfig)
|
||||||
{
|
{
|
||||||
return this.Context.DbMaintenance.GetIsIdentities(this.EntityInfo.DbTableName);
|
return this.Context.DbMaintenance.GetIsIdentities(this.Context.EntityProvider.GetTableName(this.EntityInfo.EntityName));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user