The problem is that you cannot append the values โโof a table column of the wrong type!
Convert.ToInt32(column) should work in linqpad and your c
(I wrapped in parens and added ToList ())
This should work for you if the group is a string and id is int
var query = (from tips in TblTips where tips.Id == 30 join files in TblFiles on tips.Id equals Convert.ToInt32(files.Group) select new { tips, files }).ToList();
UPDATE:
for OP, I agree with him that he should convert another value to a string
var query = (from tips in TblTips where tips.Id == 30 join files in TblFiles on tips.Id.ToString() equals files.Group select new { tips, files }).ToList();
source share