0
これは私の関数である:Entity Framework(linq)で選択したデータのリスト?
Public Function GetAllEmployee() As List(Of Employees)
Return DB.Employees.Select(Function(q) New With {q.EmployeeID, q.LastName,q.FirstName}).ToList()
End Function
私はエラーを取得しています:
Value of type
System.Collections.Generic.List(Of <anonymous type>)
cannot be converted toSystem.Collections.Generic.List(Of NorthwindModel.Employees)
.
この場合、「選択」を完全に削除することができます。 – Slauma
@Slauma - ありがとう。編集された答え。 – CAbbott
しかし私は3つのフィールド(employeeid、fname、lname)だけを欲しいです。 –