0
假設我在數據庫中有Customers表。我想使用實體框架4.1創建CustomerNames列表。我如何在Visual Basic中做到這一點?來自實體框架查詢的標量值列表
Dim customerNames = (From c In _context.Customers
Select New With {c.CustomerName}).ToList()
帶來了一個匿名對象的列表。
假設我在數據庫中有Customers表。我想使用實體框架4.1創建CustomerNames列表。我如何在Visual Basic中做到這一點?來自實體框架查詢的標量值列表
Dim customerNames = (From c In _context.Customers
Select New With {c.CustomerName}).ToList()
帶來了一個匿名對象的列表。
如果你只是想與客戶的名字List<String>
,然後選擇CustomerName
,而無需創建匿名對象:
Dim customerNames = (From c In Users
Select c.UserName).ToList()