TDengine增加Insert功能

This commit is contained in:
d4ilys
2024-09-13 15:58:50 +08:00
parent b4071a1f32
commit 07b7880be9
10 changed files with 6740 additions and 6387 deletions

View File

@@ -22,10 +22,8 @@ namespace FreeSql.TDengine
public override ISelect<T1> CreateSelectProvider<T1>(object dywhere) => new TDengineSelect<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression, dywhere);
public override IInsert<T1> CreateInsertProvider<T1>()
{
throw new NotImplementedException();
}
public override IInsert<T1> CreateInsertProvider<T1>() => new TDengineInsert<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression);
public override IUpdate<T1> CreateUpdateProvider<T1>(object dywhere)
{