Add SqlSugar.Access and SqlSugar MySqlConnector

This commit is contained in:
sunkaixuna
2022-02-01 12:55:49 +08:00
parent f26f0e2df5
commit 62cbc406a9
91 changed files with 10143 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class TestTree
{
[SqlSugar.SugarColumn(ColumnDataType = "hierarchyid")]
public string TreeId { get; set; }
[SqlSugar.SugarColumn(ColumnDataType = "Geography")]
public string GId { get; set; }
public string Name { get; set; }
}
}