OctopusDeploy / Nevermore

| Public | A JSON Document Store library for SQL Server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Querying improvments

hnrkndrssn opened this issue · comments

Provide overloads to Where to make it easier to specify what your querying.

I.e. queryBuilder.Where("Title", SqlOperand.Contains, "Nevermore") vs queryBuilder.Where("[Title] LIKE %Nevermore%")

Why not go the full IQueryable route? https://iqtoolkit.codeplex.com/ and enable:-
queryBuilder.Where(a => a.Title.Contains("Nevermore"))

That's what I'd like to achieve in the end. Thanks for the link, I did not know about that toolkit.