-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
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
Fix expression constant in contains #411
Fix expression constant in contains #411
Conversation
Fixed type casting issue for redis#286
Update RedisObjectHandler.cs
@zulander1 - try with the updates I just made on your branch, think that ought to work. This is a pretty interesting usecase of Redis OM, one thing I noticed though was that it doesn't seem to issue any Select predicates if you don't request the full object - wonder what that's about? |
Yeah, there is an issue with the Select, but not with the predicates, it doesn't want to create a new instance of the object... I didn't have time to look into, will do this week; i'll let you know if the fix work for the constant issue! |
@zulander1 - I'm assuming it's nothing on Redis OM's end? I just don't see anything in the predicates being pushed down to it. |
@slorello89 Wow it's working flawlessly! For the Select predicates we need to use UseProjection, i've updated the example |
Any timeline when we can see this in a new release |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Fixes #409