- 增加 FreeSql.Provider.Custom 自定义适配访问任何数据库;

This commit is contained in:
2881099
2021-02-05 18:20:38 +08:00
parent 7aedc52cf3
commit 082dcf1fa4
18 changed files with 1509 additions and 193 deletions

View File

@ -0,0 +1,26 @@
using FreeSql.Internal;
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace FreeSql.Custom
{
class CustomDelete<T1> : Internal.CommonProvider.DeleteProvider<T1>
{
public CustomDelete(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression, object dywhere)
: base(orm, commonUtils, commonExpression, dywhere)
{
}
public override List<T1> ExecuteDeleted() => throw new NotImplementedException("FreeSql.Provider.Custom 未实现该功能");
#if net40
#else
public override Task<List<T1>> ExecuteDeletedAsync(CancellationToken cancellationToken = default) => throw new NotImplementedException("FreeSql.Provider.Custom 未实现该功能");
#endif
}
}