Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Last active December 14, 2015 05:39
Show Gist options
  • Save mookid8000/5036713 to your computer and use it in GitHub Desktop.
Save mookid8000/5036713 to your computer and use it in GitHub Desktop.
RavenDB "transparent lazy load"
public class SomeDoc : Doc
{
public Ref<AnotherDoc> TheOtherDoc { get; set; }
}
public class AnotherDoc : Doc
{
public string Text { get; set; }
}
var doc = session.Load<SomeDoc>(someId);
var text = doc.TheOtherDoc.Follow().Text;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment