Zaid-Ajaj / LiteDB.FSharp

Advanced F# Support for LiteDB, an embedded NoSql database for .NET with type-safe query expression through F# quotations
MIT License
181 stars 20 forks source link

Update README to include LiteDB.FSharp.Extensions #54

Closed johnpage-agixis closed 4 years ago

johnpage-agixis commented 4 years ago

It took me a few minutes of frustration and a trip to the source code to figure out why the following code wasn't recognised

games.fullSearch <@ fun game -> game.Players |> List.contains playerId @>

It turns out I needed to add open LiteDB.FSharp.Extensions which isn't mentioned at all in the README.

I suggest simply adding open LiteDB.FSharp.Extensions to the initial example would suffice, after all any modern IDE will show you whether it is used or not.

Zaid-Ajaj commented 4 years ago

Thank you!