私はこの単純なLINQクエリを持っています:
Dim sourceSect = (From sect In allSections
Where sect.ORDER = sourceNode.Index
Select sect).Single()
sourceSect.ORDER = targetNode.Index
しかし、私がそれをインラインで書くと:
(From sect in allSections Where sect.ORDER = sourceNode.index Select sect).Single().ORDER = targetNode.Index
VisualStudioから構文エラーが発生します。
それには合理的な理由がありますか?:)