public IEnumerable <UserProfile> GetUserProfilePaged(int page, int count, UserProfileFilter filter = null, OrderExpression orderExpression = null) { var expression = new UserProfileQueryObject(filter).Expression; return(UserProfilePaged(page, count, expression, orderExpression)); }
public IEnumerable <UserProfile> GetUserProfileFilteredQueryable(UserProfileFilter filter = null) { var expression = new UserProfileQueryObject(filter).Expression; return(Fetch(expression)); }