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
Hi team, Are there any support for between sql query? eg. select * from table where value between 20 and 30
Thank you, Jimmy
The text was updated successfully, but these errors were encountered:
Hello @JimmyLzy ,
The library doesn't create SQL Statement.
SQL Statement
ORM such as Entity Framework does.
Entity Framework
So if they have some special method that does it, then we can add it such as the Like operator for EF: https://dynamic-linq.net/advanced-entityframework#like-operator
Like
Let me know if that answer correctly to your question
Best Regards,
Jon
Performance Libraries context.BulkInsert(list, options => options.BatchSize = 1000); Entity Framework Extensions • Entity Framework Classic • Bulk Operations • Dapper Plus
context.BulkInsert(list, options => options.BatchSize = 1000);
Runtime Evaluation Eval.Execute("x + y", new {x = 1, y = 2}); // return 3 C# Eval Function • SQL Eval Function
Eval.Execute("x + y", new {x = 1, y = 2}); // return 3
Sorry, something went wrong.
JonathanMagnan
No branches or pull requests
Hi team,
Are there any support for between sql query?
eg.
select * from table where value between 20 and 30
Thank you,
Jimmy
The text was updated successfully, but these errors were encountered: