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,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Custom
{
public int Id { get; set; }
public string Name { get; set; }
}
}