SqlSugar/Src/Asp.NetCore2/MongoDbTest/UnitTest/Cases.cs

23 lines
443 B
C#
Raw Normal View History

2025-06-12 15:19:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace MongoDbTest
{
public class Cases
{
public static void Init()
{
2025-06-12 17:51:23 +08:00
QuerySingle.Init();
QueryWhere.Init();
2025-06-12 15:19:50 +08:00
}
public static void ThrowUnitError()
{
throw new Exception("unit error");
}
}
}