我正在使用LINQ to SQL for firebird数据库。它在各个方面都很好。但是当我尝试通过对象中的搜索值搜索数据时它不起作用。 我试过下面的代码
Dim result = (From c In db.mytable Where c.data.Contains("Є start").ToList
它会返回结果,但如果以这种方式尝试相同
Dim searchval = "Є start"
Dim result = (From c In db.mytable Where c.data.Contains(searchval).ToList
没有结果。我究竟做错了什么。请帮忙。感谢