Update oracle demo

This commit is contained in:
sunkaixuan
2023-11-07 20:12:06 +08:00
parent e140955e19
commit 7119761e91
63 changed files with 1656 additions and 39 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; }
}
}