Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)
share|improve this question
2  
Doesn't it work with ' ? – Thomas Levesque Oct 19 '12 at 20:20
4  
@ThomasLevesque: don't start on this one. C# is not perfect either. – Neolisk Oct 19 '12 at 20:24
1  
If your code needs inline comments, your putting too much in one query, you can always chain separate parts of a query which makes it also easier to read.. – Tim Schmelter Oct 19 '12 at 20:25
1  
Ugh! : a date literal. – Andrew Morton Oct 19 '12 at 20:31
2  
@BrianWebster: what about Date.MaxValue? – Neolisk Oct 19 '12 at 20:41
show 9 more comments

2 Answers

up vote 6 down vote accepted

Ok folks, here is the official answer - not possible in VB. Proof.

It is REALLY annoying in VB that you cannot add inline comments to multiline LINQ statements!

And more information:

The bad news is that this wouldn't be trivial to implement. Limitations about single-lines and comments are built into the current VB parser at too low a level. It'd require a complete rewrite of the VB parser.

The good news is that we've embarked upon such a rewrite (codenamed "Roslyn" -- there have been several articles and talks about it). It's still a way off and we're not making commitments about what/when at this stage.

-- Lucian Wischik, VB language PM

share|improve this answer
Good find, thank you Neo – Frankston Ralphington III Oct 19 '12 at 20:28
1  
I found that too tim. Edited it into Neo's answer 3 min ago. Not want I wanted to learn, ultimately, but it's good info. – Frankston Ralphington III Oct 19 '12 at 20:32
@BrianWebster: you are welcome! Hope Roslyn brings some parity between .NET languages. – Neolisk Oct 19 '12 at 20:40

If

Where X.JobStatusID < 2   ' **** INSERT INLINE COMMENT HERE  ****

doesn't work, then it's not possible.

share|improve this answer
This does not work in VS2010. It only works if placed after the LINQ statement is terminated, but that is why I'm asking about inline comments – Frankston Ralphington III Oct 19 '12 at 20:21
1  
Wow. Didn't expect that from VB. – Alex Oct 19 '12 at 20:24
@Alex: yeah, me neither. – Neolisk Oct 19 '12 at 20:28
Why the downvote? It's basically the same as the other answer? – Alex Oct 19 '12 at 20:29
1  
@Alex: don't worry, I just gave you the upvote! I believe you should not be downvoted for trying to help. :) – Neolisk Oct 19 '12 at 20:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.