Created
August 1, 2019 20:49
-
-
Save JudahGabriel/efe6624fbbfd4a5c893932beadd5a5f2 to your computer and use it in GitHub Desktop.
Saving a real Cowboy to a RavenDB Cloud cluster
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using (var session = raven.OpenSession()) | |
{ | |
var cowboy = new Cowboy | |
{ | |
Name = "Maunder, C.", | |
FavoriteColor = "Orange" | |
}; | |
session.Store(outlaw); | |
session.SaveChanges(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment