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,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class ViewOrder:Order
{
public string CustomName { get; set; }
}
}