You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }