Skip to content

1.3.0

Latest
Compare
Choose a tag to compare
@arttonoyan arttonoyan released this 24 Feb 20:22
· 10 commits to master since this release

Now you can convert predicates.
Example:

Expression<Func<StudentDto, bool>> predicate = st => st.Id > 10;
var newPredicate = predicate.ConvertPredicate<StudentDto, StudentModel>();

See in UnitTest