diff --git a/Src/Asp.Net/SqlSugar/SqlSugarClient.cs b/Src/Asp.Net/SqlSugar/SqlSugarClient.cs index 727bb796a..3f26e51a2 100644 --- a/Src/Asp.Net/SqlSugar/SqlSugarClient.cs +++ b/Src/Asp.Net/SqlSugar/SqlSugarClient.cs @@ -794,6 +794,9 @@ namespace SqlSugar { try { + if (this.CurrentConnectionConfig.DbType == DbType.Oracle) { + throw new Exception("Oracle no support SaveQueues"); + } if (this.Queues == null || this.Queues.Count == 0) return default(T); isTran = isTran && this.Ado.Transaction == null; if (isTran) this.Ado.BeginTran();