Is there some way to insert inline code comments in LINQ in VB.NET?
Please see line 2 in the below as an example of where an inline comment would be desirable
Dim Jobs = (From X In DB.Jobs_Select(SearchStr, RequiresFilter)
Where X.JobStatusID < 2 -- **** INSERT INLINE COMMENT HERE ****
Order By
X.JobPriorityID Descending,
If(X.TargetDate, Date.MaxValue),
X.NeedsLit Descending,
X.HasOldArtRequests Descending,
X.HasOldLicRequests Descending
)
This is trivial in SQL code and frankly, very useful as SP's become complex. It would be nice to be able to perform the same cross-developer communication in LINQ to SQL.
Update
Here is a test condition for you.
Dim L As New List(Of KeyValuePair(Of Integer, Integer))
Dim a = (From X In L
Where X.Key > 5 'test comment
Order By X.Value)

'? – Thomas Levesque Oct 19 '12 at 20:20