Files
FreeSql/Providers/FreeSql.Provider.TDengine/TDengineDbFirst.cs
2024-09-03 14:10:55 +08:00

74 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using FreeSql.DatabaseModel;
namespace FreeSql.Provider.TDengine
{
public class TDengineDbFirst : IDbFirst
{
public List<string> GetDatabases()
{
throw new NotImplementedException();
}
public List<DbTableInfo> GetTablesByDatabase(params string[] database)
{
throw new NotImplementedException();
}
public DbTableInfo GetTableByName(string name, bool ignoreCase = true)
{
throw new NotImplementedException();
}
public bool ExistsTable(string name, bool ignoreCase = true)
{
throw new NotImplementedException();
}
public int GetDbType(DbColumnInfo column)
{
throw new NotImplementedException();
}
public string GetCsConvert(DbColumnInfo column)
{
throw new NotImplementedException();
}
public string GetCsTypeValue(DbColumnInfo column)
{
throw new NotImplementedException();
}
public string GetCsType(DbColumnInfo column)
{
throw new NotImplementedException();
}
public Type GetCsTypeInfo(DbColumnInfo column)
{
throw new NotImplementedException();
}
public string GetDataReaderMethod(DbColumnInfo column)
{
throw new NotImplementedException();
}
public string GetCsStringify(DbColumnInfo column)
{
throw new NotImplementedException();
}
public string GetCsParse(DbColumnInfo column)
{
throw new NotImplementedException();
}
public List<DbEnumInfo> GetEnumsByDatabase(params string[] database)
{
throw new NotImplementedException();
}
}
}