How I can use it in Web Application Using C#.Net
LINQ
1
Posts
1
Posters
0
Views
1
Watching
-
I have three Database Tables. 1. Groups // This table contain user's group information 2. Roles // contains role information 3. AssignedRol // contain roles assigned to a specific group ADO.Net Entity Model has generated (DataEntites) the following two entities against these three tables 1. Gourp Scalar Properties (ID, Name) Navigation (Roles) 2. Role Scalar Properties (ID, Name) Navigation (Groups) 1. How I can get assigned Role to a group 2. How I can get role not assigned to a group 3. How I assign a role to a group. in a web application using C#.Net Code Please help me in this regard