From 62af066234881f014f655056f7cd18a59bb86ac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A9=99=E5=AD=90?= <454313500@qq.com> Date: Fri, 20 Jan 2023 15:29:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8A=BD=E8=B1=A1=E7=A7=8D?= =?UTF-8?q?=E5=AD=90=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Filters/SqlsugarDataFiter.cs | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Yi.Framework.Net6/src/framework/Yi.Framework.Core.Sqlsugar/Filters/SqlsugarDataFiter.cs diff --git a/Yi.Framework.Net6/src/framework/Yi.Framework.Core.Sqlsugar/Filters/SqlsugarDataFiter.cs b/Yi.Framework.Net6/src/framework/Yi.Framework.Core.Sqlsugar/Filters/SqlsugarDataFiter.cs new file mode 100644 index 00000000..9ab2b055 --- /dev/null +++ b/Yi.Framework.Net6/src/framework/Yi.Framework.Core.Sqlsugar/Filters/SqlsugarDataFiter.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; +using Yi.Framework.Data.Filters; + +namespace Yi.Framework.Core.Sqlsugar.Filters +{ + public class SqlsugarDataFiter : IDataFilter + { + public void AddFilter(Expression> expression) where TFilter : class + { + throw new NotImplementedException(); + } + + public IDisposable Disable() where TFilter : class + { + throw new NotImplementedException(); + } + + public IDisposable Enable() where TFilter : class + { + throw new NotImplementedException(); + } + + public bool IsEnabled() where TFilter : class + { + throw new NotImplementedException(); + } + + public void RemoveFilter() where TFilter : class + { + throw new NotImplementedException(); + } + } +}