mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
22 lines
412 B
C#
22 lines
412 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()
|
|||
|
{
|
|||
|
SingleQuery.Init();
|
|||
|
}
|
|||
|
public static void ThrowUnitError()
|
|||
|
{
|
|||
|
throw new Exception("unit error");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|