mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
- 增加 FreeSql.Provider.Custom 自定义适配访问任何数据库;
This commit is contained in:
26
Providers/FreeSql.Provider.Custom/Curd/CustomDelete.cs
Normal file
26
Providers/FreeSql.Provider.Custom/Curd/CustomDelete.cs
Normal 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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user