Add QuestDb

This commit is contained in:
dailyccc
2023-02-21 09:36:41 +08:00
parent fbd062ab2d
commit 0ef87ad028
20 changed files with 4894 additions and 0 deletions

View File

@ -0,0 +1,32 @@
using FreeSql.Internal;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace FreeSql.PostgreSQL.Curd
{
class QuestDbDelete<T1> : Internal.CommonProvider.DeleteProvider<T1>
{
public QuestDbDelete(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression, object dywhere)
: base(orm, commonUtils, commonExpression, dywhere)
{
}
public override List<T1> ExecuteDeleted() => throw new NotImplementedException("QuestDb 不支持删除数据.");
public override int ExecuteAffrows() => throw new NotImplementedException("QuestDb 不支持删除数据.");
#if net40
#else
public override Task<int> ExecuteAffrowsAsync(CancellationToken cancellationToken = default) => throw new NotImplementedException("QuestDb 不支持删除数据.");
public override Task<List<T1>> ExecuteDeletedAsync(CancellationToken cancellationToken = default) => throw new NotImplementedException("QuestDb 不支持删除数据.");
#endif
}
}