We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I try filter any other property that is not from nested object it works, but if try filter nested object property it does not idk why
The text was updated successfully, but these errors were encountered:
I think it's because of the null check which is added here: https://github.com/Biarity/Sieve/blob/master/Sieve/Services/SieveProcessor.cs#L296 In this case .Where(u => new User { FirstName = ..., LastName = ... } != null) cannot be translated to SQL. I'm struggling with the same issue.
.Where(u => new User { FirstName = ..., LastName = ... } != null)
Sorry, something went wrong.
No branches or pull requests
If I try filter any other property that is not from nested object it works, but if try filter nested object property it does not idk why
The text was updated successfully, but these errors were encountered: