Skip to content

Instantly share code, notes, and snippets.

@jeffrymorris
Created February 27, 2015 01:55
Show Gist options
  • Save jeffrymorris/b86867405773350828d2 to your computer and use it in GitHub Desktop.
Save jeffrymorris/b86867405773350828d2 to your computer and use it in GitHub Desktop.
using (var cluster = new Cluster(new ClientConfiguration
{
SerializationSettings =
new JsonSerializerSettings
{
ContractResolver = new IgnoreFieldContractResolver("_id")
}
}))
{
using (var bucket = cluster.OpenBucket())
{
//this bucket will ignore any JSON fields with "_id"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment