- 修复 Oracle Dbfirst 字段可空的判断 bug;

This commit is contained in:
28810
2019-12-12 17:19:32 +08:00
parent cb074e7f0d
commit 76b613709e
20 changed files with 2630 additions and 234 deletions

View File

@ -0,0 +1,31 @@
using FreeSql.Internal;
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
using System.Threading.Tasks;
namespace FreeSql.Odbc.GBase
{
class OdbcGBaseDelete<T1> : Internal.CommonProvider.DeleteProvider<T1> where T1 : class
{
public OdbcGBaseDelete(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
}
}