How can I bind LINQ to SQL without an exact match? For example, let's say I have a form table with John Smith (2) data, and I want to join it in the Smith field in the name table. Something like that
var query = from f in db.form join n in db.name on f.nameField like '%' + n.firstName + '%'
Although the like keyword seems inaccessible to me.
c # join linq linq-to-sql
Cavyn VonDeylen
source share