mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-03-05 21:50:57 +08:00
74 lines
1.8 KiB
C#
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();
|
|
}
|
|
}
|
|
} |