Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. RavenDB inner collection paging
  2. public class Blog
  3. {
  4.    public string Id { get; set; }
  5.    public string AuthorId { get; set; }
  6.    public DateTime PublishedUTC { get; set; }
  7.    public string Title { get; set; }
  8.    public string Content { get; set; }
  9.    public Comment[] Comments { get; set; }
  10. }
  11.  
  12. public class Comment
  13. {
  14.    public string Id { get; set; }
  15.    public string AuthorId { get; set; }
  16.    public DateTime PublishedUTC { get; set; }
  17.    public string Content { get; set; }
  18. }