mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-25 12:12:51 +08:00
32 lines
764 B
C#
32 lines
764 B
C#
using FreeSql.Internal;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FreeSql.Odbc.Oracle
|
|
{
|
|
|
|
class OdbcOracleDelete<T1> : Internal.CommonProvider.DeleteProvider<T1> where T1 : class
|
|
{
|
|
public OdbcOracleDelete(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression, object dywhere)
|
|
: base(orm, commonUtils, commonExpression, dywhere)
|
|
{
|
|
}
|
|
|
|
public override List<T1> ExecuteDeleted()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
#if net40
|
|
#else
|
|
public override Task<List<T1>> ExecuteDeletedAsync()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
#endif
|
|
}
|
|
}
|