I'm trying to create a dynamic WHERE clause with LINQ. I have a working example but I'm worried that it's not safe from SQL injection....The following LINQ code:...var oQuery = _db.People.Where("FirstName.Contains(@0)", "kev");
...produces the following S...