第一次使用Linq用户

时间:2013-07-18 19:09:18

标签: linq c#-4.0

为什么这样做(它只返回姓氏为Brown的记录)

getAll = (from a in getAll where a.PatientLastName.StartsWith("brown") select a);

但这不起作用(它返回数据库中的所有记录)?

getAll = (from a in getAll where a.PatientLastName.StartsWith(request.FirstName) select a);

其中request.FirstName是字符串字段,等于“棕色”。

0 个答案:

没有答案