有什么方法可以在VB.NET的LINQ中插入内联代码注释?
请参阅下面的第2行,作为需要内嵌评论的示例
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
)
这在SQL代码中是微不足道的,并且坦白地说,当SP变得复杂时,它非常有用。能够在LINQ to SQL中执行相同的跨开发人员通信会很好。更新
这是您的测试条件。
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)
最佳答案
好的,这是官方的答案-在VB中是不可能的。 Proof。
以及更多信息: