标签: c# sql entity-framework
我正在尝试使用以下查询在表中搜索记录。我要搜索的值包含多个1个正斜杠。例如“温度/温度2 /温度3”。以下查询对于普通文本可以正常运行,但对于上述示例而言则失败。
var result = (from record in db.someTable where record.des == item.name select new { no = record.no, }).Single();