您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ILuFieldsExpressions.cs 362B

123456789101112
  1. using System;
  2. using System.Linq.Expressions;
  3. using Luticate2.Auth.Dbo.Fields;
  4. using Luticate2.Auth.Dbo.Result;
  5. namespace Luticate2.Auth.Interfaces
  6. {
  7. public interface ILuFieldsExpressions<TDbo, TModel>
  8. {
  9. LuResult<Expression<Func<TType1, object>>> GetExpression<TType1>(Expression<Func<TType1, TModel>> modelProperty, LuFieldDbo field);
  10. }
  11. }