How can i perform an LIKE query within Linq?
I have the following query i would like to execute.
var results = from c in db.costumers w
Try using string.Contains () combined with EndsWith.
var results = from c in db.Customers where c.FullName.Contains (FirstName) && c.FullName.EndsWith (LastName) select c;