Add Dm 达梦数据库

This commit is contained in:
skx
2020-10-31 20:00:59 +08:00
parent b86871e634
commit 6c68be2f24
65 changed files with 4472 additions and 865 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class UValidate
{
public static void Check(object a, object b, object name)
{
if (a?.ToString()?.Trim() != b?.ToString()?.Trim())
{
throw new Exception(name + " error");
}
}
}
}