umbraco.examine.linq
umbraco.examine.linq copied to clipboard
LINQ to Lucene query provider for Umbraco
Bumps [UmbracoCms](https://github.com/umbraco/umbraco-cms) from 7.2.5 to 8.10.0. Release notes Sourced from UmbracoCms's releases. CodeGarden '18 Snapshot Version 8 as of CodeGarden '18 Commits cb04914 Register the TelemetryIdentifierStep 36cb342 Telemetry revisited -...
Bumps [UmbracoCms](https://github.com/umbraco/umbraco-cms) from 7.3.3 to 8.10.0. Release notes Sourced from UmbracoCms's releases. CodeGarden '18 Snapshot Version 8 as of CodeGarden '18 Commits cb04914 Register the TelemetryIdentifierStep 36cb342 Telemetry revisited -...
Is OrderBy supported? I'm using it but it doesn't seem like it's doing anything.
[ParseException: Cannot parse '((someOtherProperty:123) AND isPublished:)': Encountered " ")" ") "" at line 1, column 63. I'm guessing isPublished: needs to be isPublished:true/isPublished:1?
Is it possible to add filtering by a list of ints functionality? `public List GetFoosByIds(List ids) { List foos = Index("FooSearcher").Where(x => x.NodeTypeAlias == "foo" && ids.Contains(x.Id)).ToList(); return foos; }`...
What do you think of this? It fixed the issue for me.
I took a dive into the code. There generated query is "AND (id:[261217 TO 99999999999999999] OR id:[\-99999999999999999 TO 261219])". Is there any reason to not make it "NOT (id:261218)"? I...