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(); + } + } +}