TDengine增加单元测试

This commit is contained in:
d4ilys
2024-09-03 14:36:26 +08:00
parent cd092e936e
commit 0bcd23537b
13 changed files with 235 additions and 93 deletions

View File

@@ -1,18 +1,14 @@
using FreeSql.Internal;
using FreeSql.Internal.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FreeSql.Provider.TDengine
namespace FreeSql.TDengine
{
internal class TDengineCodeFirst : Internal.CommonProvider.CodeFirstProvider
{
public TDengineCodeFirst(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression) : base(orm, commonUtils, commonExpression)
public TDengineCodeFirst(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression) : base(orm,
commonUtils, commonExpression)
{
}
public override DbInfoResult GetDbInfo(Type type)
@@ -25,4 +21,4 @@ namespace FreeSql.Provider.TDengine
throw new NotImplementedException();
}
}
}
}