我正在尝试使用gridview
并在LinqDataSource1的LinqDataSource
条件下填充where
中的数据 - 以编程方式我不确定如何将字符串值传递给特定栏目?
以编程方式在字符串中LinqDataSource
中where condition的语法是什么?
我熟悉int中的那个:
int id = 5;
例如:
LinqDataSource1.Where = "ID =" +id;
但是,不确定string
的语法。
请提出建议!
答案 0 :(得分:1)
好的,最后我在LinqDataSource中得到了string的语法:
LinqDataSource1.Where =“Title.Contains(”+“\”“+ txtTitle.Text +”\“”+“)”;