Last active
December 14, 2015 05:39
-
-
Save mookid8000/5036713 to your computer and use it in GitHub Desktop.
RavenDB "transparent lazy load"
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
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