Skip to content

Instantly share code, notes, and snippets.

@johnzablocki
Created September 3, 2012 21:16
Show Gist options
  • Save johnzablocki/3613634 to your computer and use it in GitHub Desktop.
Save johnzablocki/3613634 to your computer and use it in GitHub Desktop.
Couchbase .NET Client Library 1.2 API Sample with Generics
var beer = new Beer { Name = "Atlantic Amber" };
client.StoreJson(StoreMode.Add, "beer_Atlantic_Amber", beer);
var view = client.GetView<Beer>("beers", "by_name");
foreach(var beer in view)
{
Console.WriteLine(beer.Name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment