TDengine CodeFirst完善

This commit is contained in:
d4ilys
2024-09-13 14:18:36 +08:00
parent 962a5b9ba7
commit b4071a1f32
8 changed files with 259 additions and 62 deletions

View File

@@ -156,18 +156,6 @@ namespace FreeSql.TDengine.Curd
return sb.Append(_tosqlAppendContent).ToString();
}
internal static string TDengineTableNameAdapter(ref TableInfo tableInfo, ref string tableName,
ref CommonUtils utils)
{
if (utils is TDengineUtils tDengineUtils)
{
return tDengineUtils.GenerateSTableName(tableName, tableInfo.Type);
}
return tableName;
}
public override ISelect<T1, T2> From<T2>(
Expression<Func<ISelectFromExpression<T1>, T2, ISelectFromExpression<T1>>> exp)
{