これは私の機能です:
Public Function GetAllEmployee() As List(Of Employees)
Return DB.Employees.Select(Function(q) New With {q.EmployeeID, q.LastName,q.FirstName}).ToList()
End Function
エラーが発生しました:
タイプの値を
System.Collections.Generic.List(Of <anonymous type>)
に変換することはできませんSystem.Collections.Generic.List(Of NorthwindModel.Employees)
。