Created
September 3, 2012 21:14
-
-
Save johnzablocki/3613613 to your computer and use it in GitHub Desktop.
Couchbase .NET Client Library 1.2 API Sample
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
client.Store(StoreMode.Add, "beer_Atlantic_Amber", "{ Name = \"Atlantic Amber\" }"); | |
var view = client.GetView("beers", "by_name"); | |
foreach(var row in view) | |
{ | |
Console.WriteLine(row.ItemId); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment