Add odbc test

This commit is contained in:
sunkaixuan
2022-12-21 17:14:29 +08:00
parent bc311b41ea
commit c83aabafe9
19 changed files with 429 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OrmTest
{
//[SugarTable("CustomAttributeTable")]
public class AttributeTable
{
//[SugarColumn(IsPrimaryKey =true)]
public string Id { get; set; }
public string Name { get; set; }
}
}