Add ClickHouse

This commit is contained in:
sunkaixuan
2022-08-12 20:50:17 +08:00
parent 3ada1c8bee
commit ef4923f5e9
25 changed files with 3147 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SqlSugar.ClickHouseCore\SqlSugar.ClickHouseCore.csproj" />
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,12 @@
using System;
namespace ClickHouseTest
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}