Skip to content

Instantly share code, notes, and snippets.

@JudahGabriel
Created August 1, 2019 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudahGabriel/efe6624fbbfd4a5c893932beadd5a5f2 to your computer and use it in GitHub Desktop.
Save JudahGabriel/efe6624fbbfd4a5c893932beadd5a5f2 to your computer and use it in GitHub Desktop.
Saving a real Cowboy to a RavenDB Cloud cluster
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