I am having a Dynamic Linq where It should perform comparison between two integers. I tried so many but none of them worked for me.
Code
db.Bibs.Where(" Id >= 1 && Id<1000 ")
db.Bibs.Where(" Id between 1 && 1000 ")
How to form this string to make it work. Any suggestion will be highly appreciated.