Fix table addressing

This commit is contained in:
2022-04-19 12:49:31 -04:00
parent cd1458af1e
commit 835501d7e5
2 changed files with 21 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
# RethinkDb.Driver.FSharp
Idiomatic F# extensions for the C# RethinkDB driver
![Nuget (with prereleases)](https://img.shields.io/nuget/vpre/RethinkDb.Driver.FSharp)
[![Nuget (with prereleases)](https://img.shields.io/nuget/vpre/RethinkDb.Driver.FSharp)](https://www.nuget.org/packages/RethinkDb.Driver.FSharp/)
## Using
@@ -28,7 +28,7 @@ let fetchPost (postId : string) =
/// string -> (IConnection -> Task<Post>)
let fetchPost (postId : string) =
rethink<Post> {
withTableInDb "Post" "Blog"
withTable "Blog.Post"
get postId
result
withRetryDefault