diff options
author | adam <adamansky@gmail.com> | 2013-06-23 22:48:18 +0700 |
---|---|---|
committer | adam <adamansky@gmail.com> | 2013-06-23 22:48:18 +0700 |
commit | 3ec5c569197357afc0346cd702a0786c133f3f45 (patch) | |
tree | 193d3cb1b468749216db86d4b959fde3696503f1 /nejdb | |
parent | 5c1baa36792507c4d8e0cc14f550650e3df69fcc (diff) | |
download | ejdb-3ec5c569197357afc0346cd702a0786c133f3f45.tar.gz ejdb-3ec5c569197357afc0346cd702a0786c133f3f45.tar.bz2 ejdb-3ec5c569197357afc0346cd702a0786c133f3f45.zip |
#24
Diffstat (limited to 'nejdb')
-rw-r--r-- | nejdb/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nejdb/README.md b/nejdb/README.md index 7bccfc0..ffc27a5 100644 --- a/nejdb/README.md +++ b/nejdb/README.md @@ -76,7 +76,7 @@ namespace sample { using (var cur = q.Find()) { Console.WriteLine("Found " + cur.Length + " parrots"); foreach (var e in cur) { - //fetch `name` and the first element of likes array from current BSON iterator. + //fetch the `name` and the first element of likes array from the current BSON iterator. //alternatively you can fetch whole document from the iterator: `e.ToBSONDocument()` BSONDocument rdoc = e.ToBSONDocument("name", "likes.0"); Console.WriteLine(string.Format("{0} likes the '{1}'", rdoc["name"], rdoc["likes.0"])); |