Hello! I´m stuck :( I have the following: A SQL DB with to Tables (NewStuff and OldStuff) 2 Datagridviews each of them have bound thier Datasource to 1 Table Now i have created a Linq join: Dim resultdupes = From newstuff In db.NewStuffs Join Oldstuff In db.OldStuffs On newstuff.MD5Hash Equals Oldstuff.MD5Hash and with a Buttonclick i want to have the result in one of the existing Datagridviews. I tought i can do this with the following: Me .dgrvNewstuff.DataSource = resultdupes But i got an empty
Read More...