SqlSugar/SqlSugar/Entities/ExpressionParameter.cs
sunkaixuan 24b53f7435 -
2017-01-07 23:13:07 +08:00

15 lines
327 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public class ExpressionParameter
{
public Expression Expression { get; set; }
public SqlSugarClient DbContext { get; set; }
}
}