This is my linq query -
from u in db.CardTables
join v in db.FunRegistereds
on new { u.IsApproved, u.FKCardID } equals new {"YES", v.UserID }
Where from this query column in first table CardTables has one with string match and column FKCardID is integer type.
I am getting troubled with this first string match.
How do I match this u.IsApproved column with string "YES" while matching both the columns in this way ??