this is my code:
how to bind "getperson" to kendo grid
thanks in advanced
<WebMethod()>
Public
Shared
Function
getperson()
As
String
Dim
query = db.Employees.
Select
(
Function
(q)
New
With
{q.EmployeeID, q.LastName, q.BirthDate})
Dim
sb
As
New
StringBuilder
For
Each
rows
In
query
sb.Append(rows.EmployeeID &
":"
& rows.LastName &
","
)
Next
Return
Convert.ToString(sb)
End
Function
how to bind "getperson" to kendo grid
thanks in advanced