I have a question regarding Linq. As I have observed some codes, they usually use for example:
var _s = (from p in exemplo1
join q in exemplo2 on p.blabla equals q.blablabla
I would like to know if a structure like for example that I am going to show below is valid and how can I create it:
var _s = (from p in exemplo1
join q in exemplo2 on SqlMethods.Like(p.blabla, "%" + q.blablabla + "%")