I need to create the lambda query that allows me to get the security objects that the user (Account) is authorized to access in addition to the list of permissions assigned to him for each security object
The method is List<AuthObject> GetUserAccessList (int accountId)
The AuthObject:
public class AuthObject
{
public string Obj { get; set; } // name of the security object
public List<String> Permissions { get; set; } //name of the permissions
}
