SqlSugar/Src/Asp.Net/SqlServerTest/UnitTest/ObjectsValidate.cs
2019-05-18 10:11:50 +08:00

20 lines
394 B
C#

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