indexCreate overloads

plus version bump and syntax fix in the README
This commit is contained in:
Daniel J. Summers
2017-07-16 21:04:00 -05:00
parent fdd95bfe95
commit 43aefbef78
3 changed files with 13 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ let post = fetchPost "the-post-id" conn |> Async.RunSynchronously
```fsharp
// Function names cannot be polymorphic the way object-oriented methods can, so filter's three overloads become
filter r.HashMap("age", 30)
filter (r.HashMap ("age", 30))
// and
filterFunc (fun row -> row.["age"].Eq(30))
// and