From 46611f85746ca562cd49883f7959c374d5440c45 Mon Sep 17 00:00:00 2001 From: jkpete <1031139173@qq.com> Date: Fri, 4 Jul 2025 17:05:56 +0800 Subject: [PATCH] fix interface of IEGDatabase --- addons/EGFramework/Module/SaveTools/Data/EGDapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/EGFramework/Module/SaveTools/Data/EGDapper.cs b/addons/EGFramework/Module/SaveTools/Data/EGDapper.cs index e361746..01cb743 100644 --- a/addons/EGFramework/Module/SaveTools/Data/EGDapper.cs +++ b/addons/EGFramework/Module/SaveTools/Data/EGDapper.cs @@ -8,7 +8,7 @@ using Dapper; //ORM Save tools. First support SQLite and MySQL,In future we will support other Database who implement DBConnection. namespace EGFramework { - public abstract class EGDapper : IEGSave, IEGSaveData, IEGCanGetDBConnection, IEGDataBase + public abstract class EGDapper : IEGSave, IEGSaveData, IEGDataBase { public DbConnection Connection { get; set; } public string ExceptionMsg;