From 0fa402f4e958636ab189f0b8b409fa7a533aa251 Mon Sep 17 00:00:00 2001 From: liangkun Date: Tue, 29 Nov 2022 15:10:41 +0800 Subject: [PATCH] =?UTF-8?q?oracle=20=E9=BB=98=E8=AE=A4=E8=A1=A8=E7=A9=BA?= =?UTF-8?q?=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Learun.Db/Learun.DataBase.EF.Oracle/DatabaseContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Db/Learun.DataBase.EF.Oracle/DatabaseContext.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Db/Learun.DataBase.EF.Oracle/DatabaseContext.cs index c47ce82e3..66e0bb135 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Db/Learun.DataBase.EF.Oracle/DatabaseContext.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Db/Learun.DataBase.EF.Oracle/DatabaseContext.cs @@ -52,7 +52,7 @@ namespace Learun.DataBase.Oracle dynamic configurationInstance = Activator.CreateInstance(type); modelBuilder.Configurations.Add(configurationInstance); } - modelBuilder.HasDefaultSchema("Learun");//这里写默认表空间名称 + modelBuilder.HasDefaultSchema("digitalschool");//这里写默认表空间名称 base.OnModelCreating(modelBuilder); } #endregion