Synchronization code

This commit is contained in:
sunkaixuan 2024-03-06 15:12:26 +08:00
parent 50ef993dde
commit d71d975e8a

View File

@ -278,7 +278,8 @@ namespace SqlSugar
}
private bool IsOracle()
{
return this.Context is OracleExpressionContext;
return this.Context is OracleExpressionContext
|| this.Context is DmExpressionContext;
}
}
}