这是我的功能:
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)
。