mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-04 20:57:58 +08:00
30 lines
603 B
C#
30 lines
603 B
C#
![]() |
using OrmTest.Models;
|
|||
|
using SqlSugar;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Linq.Expressions;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace OrmTest.ExpressionTest
|
|||
|
{
|
|||
|
public class Method : ExpTestBase
|
|||
|
{
|
|||
|
private Method() { }
|
|||
|
public Method(int eachCount)
|
|||
|
{
|
|||
|
this.Count = eachCount;
|
|||
|
}
|
|||
|
internal void Init()
|
|||
|
{
|
|||
|
base.Begin();
|
|||
|
for (int i = 0; i < base.Count; i++)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
base.End("Method Test");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|