添加抽象种子数据

This commit is contained in:
橙子
2023-01-20 15:29:21 +08:00
parent 00d368080b
commit 62af066234

View File

@@ -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<TFilter>(Expression<Func<TFilter, bool>> expression) where TFilter : class
{
throw new NotImplementedException();
}
public IDisposable Disable<TFilter>() where TFilter : class
{
throw new NotImplementedException();
}
public IDisposable Enable<TFilter>() where TFilter : class
{
throw new NotImplementedException();
}
public bool IsEnabled<TFilter>() where TFilter : class
{
throw new NotImplementedException();
}
public void RemoveFilter<TFilter>() where TFilter : class
{
throw new NotImplementedException();
}
}
}