Questions tagged [nested-groups]

Adding a group as a member of another group. Commonly used in LINQ and LDAP.

22 questions
0
votes
1 answer

Group_concat into group_concat with two different separators

I use the follown as one movie's page SELECT `mt_films`.`Title1` AS `Title1`, GROUP_CONCAT(DISTINCT `t_idiotita`.`idiotita`, ': ', `t_people`.`person` ORDER BY `t_idiotita`.`cnt_gr_id` ASC SEPARATOR ' ')…
0
votes
1 answer

LINQ Nested group syntax

MSDN does a really bad job at explaining nested groups in LINQ: https://learn.microsoft.com/en-us/dotnet/csharp/linq/create-a-nested-group Take this example: IEnumerable>> query = from person in…
0
votes
1 answer

How to match un-nested groups between parenthesis only?

I am trying to match chains of characters that are within single opening and closing parenthesis. In the following examples only the first two lines should return ab.The other ones shouldn't match anything ab(ab)ac => ab (ab)ndn => ab ab(ab(ac)an)…
tbop
  • 394
  • 1
  • 3
  • 13
0
votes
1 answer

Active Directory search query for nested groups with wildcard pattern in search filter

I am trying to allow the users from nested groups in Active Directory to login to my spring boot/security based application. I have figured how to provide the search query through spring-security configuration, but I am having trouble with the…
ayip
  • 2,473
  • 1
  • 19
  • 30
0
votes
0 answers

How do i read through a file to find the content of nested parenthetic symbols using vb.net?

i am using vb.net to convert text files to schemas and not sure where to start. my source file is a text file with multiple lines like this:
0
votes
1 answer

View groups inside of groups with powershell

I am trying to see which groups are inside of a group. For example: ACCCLK_JC is the job code for ACCCLK. It contains roughly 17 groups. I wish to see each group inside this group. This is also known as nested groups or subgroups.
David
  • 891
  • 1
  • 8
  • 18
0
votes
1 answer

Retrieve Nested Groups for a user from LDAP using Java program

I searched on net, found similar issues. As I'm newbie to LDAP, had to reach out for help. Right now code brings all the groups for a user. When user1 logins, it brings Group A. New Requirement is: If Group A is member of Group B, we need to…
user3311757
  • 3
  • 1
  • 4
1
2