Open pedersorensen opened 3 years ago
LiteDB has a Query.StartsWith method that would make sense to use when writing quotation queries like this:
Query.StartsWith
collection.Find(Query.createQueryFromExpr <@ fun t -> t.SomeStringProperty.StartsWith(someString) @>)
The query above currently just throws an exception.
LiteDB has a
Query.StartsWith
method that would make sense to use when writing quotation queries like this:The query above currently just throws an exception.