Entity framework - Fetching values from the middle table in many to many relationships
-
Hi, I've been looking for an answer for quite a while but no luck, I'm sure u guys can help me out. I have 3 tables Roles > MId PK Members > RId PK Members_Roles (MId, RId) I'm new to this so would appreciate ur help. Regards, K
You are going to have to post a real question in order to get an answer. However this[^] might be a starting point for you. :)
Chris Meech I am Canadian. [heard in a local bar] In theory there is no difference between theory and practice. In practice there is. [Yogi Berra] posting about Crystal Reports here is like discussing gay marriage on a catholic church’s website.[Nishant Sivakumar]
-
Hi, I've been looking for an answer for quite a while but no luck, I'm sure u guys can help me out. I have 3 tables Roles > MId PK Members > RId PK Members_Roles (MId, RId) I'm new to this so would appreciate ur help. Regards, K
try this........... select m.* from roles r, member m, member_roles p where r.mid = p.rid and m.rid = p.rid