I have two tables:
Clients, and a join table that has user id, a foreign key to clients, and some other stuff.
I want to do this SQL
select TblClient.* from TblClient inner join tblUserClientProjJoin as b on TblClient.Client_ID = b.Client_FK where b.User_fk = 2
So getting a list of 'clients' that a specific user has access to.
I want to apply this result to collection I can bind to controls.
Anyone?