如何处理 Me.Products ?我在表“产品”中使用Northwind.mdf数据库。该表是药物到dbml文件。
需要使用语句或文件定义Me.Products 以使其可用。也许昏暗的陈述不正确?
Partial Public Class NorthwindDataContext
Dim Products As Object
Public Function GetProductsByCategory(ByVal id1 As Integer) As IEnumerable(Of Product)
Return From p In Me.Products _
Where p.ProductID = id1 _
Select p
End Function
End Class
答案 0 :(得分:0)
我在VB中很弱但仍然尝试过 是的dim用于创建变量。首先为例如创建一个northwinddatacontext的对象。
dim db as new northwinddatacontext()
然后你可以把表格作为
var query = from p in db.Products
where p.ProductID = id
select p