EntityDataSource Where Clause in VB.NET

后端 未结 1 533
迷失自我
迷失自我 2021-01-23 22:44

I have a entitydatasource bound to a gridview on my webpage.

In the code behind, I am able to filter and display what I want to the gridview using the WHERE statements o

相关标签:
1条回答
  • The "IN clause" for EntityDataSource.Where requires curly braces, rather than parentheses:

    whereString = "it.EmployeeID IN {1,4,7}"
    
    0 讨论(0)
提交回复
热议问题