当我尝试运行以下代码时。
var result = from c in db.brand
where c.title.contains("test")
select c.title + "-" +c.brand;
List<string> lst = r.ToList();
它给出了以下错误。
LINQ to Entities 无法识别方法“System.String ToString()”方法,并且该方法无法转换为存储表达式。