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,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace OrmTest
{
[SugarTable("MyEntityMapper")]
public class EntityMapper
{
[SugarColumn(ColumnName ="MyName")]
public string Name { get; set; }
}
}