Skip to content

Commit

Permalink
Markdown touchup
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Murphy committed Dec 8, 2010
1 parent 3b59654 commit 5105fe3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -23,13 +23,13 @@ LoveSeat Basics


**Get a view results and populate your Domain object** **Get a view results and populate your Domain object**


var results = db.View&lt;MyObject&gt;("view_name"); var results = db.View<MyObject>("view_name");


//...or with parameters //...or with parameters


var options = new ViewOptions{Limit=10}; var options = new ViewOptions{Limit=10};
options.SetStartKey("abc"); options.SetStartKey("abc");
results = db.View&lt;MyObject&gt;("view_name", options); results = db.View<MyObject>("view_name", options);


//loop through your strongly typed results //loop through your strongly typed results


Expand Down

0 comments on commit 5105fe3

Please sign in to comment.