如何将此linq.expression从C#转换为VB?

时间:2010-03-30 15:21:38

标签: c# vb.net linq .net-4.0

[QueryInterceptor("Somethings")]
public Expression<Func<Something, bool>> OnSomethings()
{
    // Code here
}

我有一个观点猜测,看了msdn,但是没有与使用方式相匹配的例子。想法?

1 个答案:

答案 0 :(得分:4)

<QueryInterceptor("Somethings")> _
Public Function OnSomethings() As Expression(Of Func(Of Something, Boolean))
    ' Code here
End Function