TDengine is a high-performance, distributed timing database, widely used in the Internet of Things, industrial Internet and other fields. One of its core concepts isSuper Table, which is similar to the table structure template in a traditional database, allowing users to dynamically create and manage subtables through tags (Tags). As a popular ORM framework, SQLSugar provides support for TDengine super tables, allowing developers to operate TDengine databases more conveniently.
This article will introduce how to use SQLSugar to operate the supertable of TDengine, including creating supertables, querying subtables, inserting data, etc.
1. Create a super table
Before using TDengine's supertable, you first need to create a supertable in the database. SQLSugar providesCodeFirst
Mode, the table structure can be automatically created through code.
NUGET installation
up to date
SqlSugarCore Latest
Create a database object
In the above code,SUsingTagModel
is an entity class that maps the supertable structure in TDengine. passMethod, SQLSugar will automatically create the corresponding super table in TDengine.
2. Define the supertable entity class
In SQLSugar, the entity class of the super table needs to be usedSTableAttribute
To mark and passSugarColumn
to define field properties.
-
STableAttribute
Used to mark this class as a super table.STableName
Specify the name of the super table.Tag1
Specify the tag field. -
SugarColumn
Used to define field properties,IsPrimaryKey
Indicates that this field is the primary key.
3. Query super table data
SQLSugar providesAsTDengineSTable
Method, used to map query operations to TDengine's supertable.
Query all data
var list1 = <SUsingTagModel>().AsTDengineSTable().ToList();
Query specific subtable data
passWhere
Conditions can query the subtable data of a specific tag.
// Query subtable Avar tagA = <SUsingTagModel>().AsTDengineSTable().Where(it => it.Tag1 == "a").ToList(); // Query subtable Bvar tagB = <SUsingTagModel>().AsTDengineSTable().Where(it => it.Tag1 == "b").ToList();
4. Insert data and create subtables dynamically
When inserting data, SQLSugar supports dynamic creation of subtables based on label values. passSetTDengineChildTableName
Method, you can specify the naming rules of the subtable.
-
SetTDengineChildTableName
Methods are used to specify the naming rules of subtables.stableName
is the name of the super table.it
is the currently inserted data object. -
ExecuteCommand
The method performs an insert operation and automatically creates a subtable.
5. Dynamically map supertable names
In some scenarios, the name of the super table may need to be dynamically modified. SQLSugar providesMappingSTableName
Method, which can dynamically map supertable names at runtime.
<SUsingTagModel>("newSName001");
-
MappingSTableName
Methods are used to dynamically modify the name of the super table and replace the entity class.STableAttribute
ofSTableName
Attributes.
6. Summary
Through SQLSugar's support for TDengine supertables, developers can operate TDengine databases more conveniently. This article describes how to create supertables, query subtables, insert data, and dynamically map supertable names using SQLSugar. These functions make SQLSugar a powerful tool for processing TDengine data, especially suitable for timing data processing scenarios such as the Internet of Things and the Industrial Internet.
In actual development, developers can flexibly use these functions according to business needs to improve development efficiency and optimize database operation performance.