↧
Answer by Christopher Rathermel for Linq: multiple relationships to same table
I had to create a function to getStaffbyID and manually call it when I wanted the name instead of the id. Dim id As String = 1 Session("BusinessPlanID") = id Dim oLinq As New Linq Dim bp As...
View ArticleAnswer by Frustrating Developments for Linq: multiple relationships to same...
By adding two references you are saying select all rows where the PK = this and the PK = that. Since the Pk is unique that condition will always be false.I don't know linq really well but in SQL you...
View ArticleLinq: multiple relationships to same table
I have the same problem as this guy: I have a table that has references my tblstaff table twice for two different people. Now that I have added this second reference neither of them work.What is up w/...
View Article