Created
July 27, 2011 10:27
-
-
Save kkozmic/1109103 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var query = from foo in session.Query<Foo>() | |
from bar in foo.Something.Bars | |
select anythingReally; | |
// LINQ provider throws exception complaining | |
// about second 'from', but in reality it complains about the 'Something' between foo and Bars | |
var result = query.ToList(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment