mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
31 lines
690 B
C#
31 lines
690 B
C#
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()
|
|
{
|
|
QuerySingle.Init();
|
|
QueryWhere.Init();
|
|
QuerySelect.Init();
|
|
QueryJson.Init();
|
|
QueryLeftJoin.Init();
|
|
QueryJsonArray.Init();
|
|
Insert.Init();
|
|
Update.Init();
|
|
Delete.Init();
|
|
InsertOrUpdate.Init();
|
|
}
|
|
public static void ThrowUnitError()
|
|
{
|
|
throw new Exception("unit error");
|
|
}
|
|
}
|
|
}
|