Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelMunoz committed Dec 7, 2020
1 parent 66bbc4c commit 18333ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
![nuget](https://badgen.net/nuget/v/mondocks)

> ```
> dotnet add package Mondocks --version 0.1.0
> dotnet add package Mondocks --version 0.2.0
> ```
> This library is based on the mongodb extended json spec and mongodb manual reference
>
> https://docs.mongodb.com/manual/reference/mongodb-extended-json/
> https://docs.mongodb.com/manual/reference/command/
> https://docs.mongodb.com/manual/reference/mongodb-extended-json/ > https://docs.mongodb.com/manual/reference/command/
This library provides a set of familiar tools if you work with mongo databases and can be a step into more F# goodies, it doesn't prevent you from using the usual MongoDB/.NET driver so you can use them side by side. It also can help you if you have a lot of flexible data inside your database as oposed to the usual strict schemas that F#/C# are used to from SQL tools, this provides a DSL that allow you to create `MongoDB Commands (raw queries)` leveraging the dynamism of anonymous records since they behave almost like javascript objects.
Writing commands should be almost painless these commands produce a JSON string that can be utilized directly on your application or even copy/pasted into the mongo shell.
Expand All @@ -21,6 +20,7 @@ Ideally this library is meant to be used mostly with records and anonymous recor
## Sample Usage

Check out this quick sample of what you can do right now

> You can also check this [gist](https://gist.github.com/AngelMunoz/35cf2bc439da9969664f9987f7109ee3)
```fsharp
Expand Down
2 changes: 1 addition & 1 deletion src/Mondocks/Mondocks.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<AssemblyName>Mondocks</AssemblyName>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
<Description>A CE library for F# that may provide better interactions with mongo databases</Description>
<Copyright>Copyright 2020 Angel D. Munoz.</Copyright>
<Authors>Angel Munoz and contributors</Authors>
Expand Down

0 comments on commit 18333ed

Please sign in to comment.