我使用CreateFormDto方法和MapDto方法将DTO转换为实体,并将实体转换为DTO。现在我无法转换它们,例如:
public Paginated<TDomainDto> SearchPage(Expression<Func<TDomainDto, bool>> predicate, int page, int size)
{
return BaseService.SearchPage(predicate: predicate, page: page, size: size);
}
我在此行(predicate: predicate,
收到错误,此错误为cannot convert from 'System.Linq.Expressions.Expression<System.Func<TDomainDto, bool>>' to 'System.Linq.Expressions.Expression<System.Func<TDomain, bool>>'