-
-
Notifications
You must be signed in to change notification settings - Fork 198
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
What methods are allowed when using Linq? #576
Comments
YesSQL has some of LINQ like methods, but not all you can check the source code to know which are supported https://github.com/sebastienros/yessql/blob/main/src/YesSql.Abstractions/IQuery.cs |
Sorry I meant the operators and methods I can use within the Linq methods, like those I've shared in my OP, eg. String.ToLower(), using String.ToLower() throws an exception. |
|
Please see the op, I said within the linq extensions, eg Where(x => x.Name.ToLower() == "test"). Doing this will cause yessql to throw an exception. For exampl in ef core using unsupported or untranslatable methods results in client side evaluation For to linq to sql here are the unsupported string methods |
Here is a list
|
thanks!! |
DefaultQuery implements |
I noticed I can not using
ToLower()
and.Contains
, what else should I avoid?The text was updated successfully, but these errors were encountered: