| commit | 524341fa95e7838ae8576d56810831b3c860da39 | [log] [tgz] |
|---|---|---|
| author | Yanhong.Ma <yanhong.ma@xr-techs.com> | Thu Jul 21 18:20:19 2022 +0800 |
| committer | Yanhong.Ma <yanhong.ma@xr-techs.com> | Thu Jul 21 18:20:19 2022 +0800 |
| tree | 61f439d5c616e2dc97fe3a73926dd717763bdab4 | |
| parent | b93fdf4f8480173ba033e3a82430e8bec37e552a [diff] |
修正 CloseAsync 在 .Net 461 和 .Net STD 2.0 不用override的问题
This is the C# client of Apache IoTDB.
Apache IoTDB (Internet of Things Database) is a data management system for time series data, which can provide users specific services, such as, data collection, storage and analysis. Due to its light weight structure, high performance and usable features together with its seamless integration with the Hadoop and Spark ecology, IoTDB meets the requirements of massive dataset storage, high throughput data input, and complex data analysis in the industrial IoT field.
Apache IoTDB website: https://iotdb.apache.org Apache IoTDB Github: https://github.com/apache/iotdb
.net framework 4.xIn order to adapt to .net framework 4.x, we have packaged a nuget package separately, the package name is Apache.IoTDB.framework.
You can install it through Package Manager (PM), .NET CLI, etc. For example (.NET CLI):
dotnet add package Apache.IoTDB.framework --version 0.12.1.2
We have prepared Nuget Package for C# users who are using .net 5.0 or higher version. Users can directly install the client through .NET CLI. The link of our NuGet Package is here. Run the following command in the command line to complete installation
dotnet add package Apache.IoTDB
Note that the Apache.IoTDB package only supports .net 5.0 or higher version. If you are using .net framework 4.x, please refer to the section starting from .net framework 4.x.
.NET SDK Version == 5.0
Users can refer to the test code in tests to understand the usage mode of each interface.
.NET SDK Version == 5.0 ApacheThrift >= 0.14.1 NLog >= 4.7.9
You can find out how to publish from this doc.