Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8958317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:11:03+00:00 2026-06-15T15:11:03+00:00

Hierarchical Structures Database Select By Lambda Expression Hi My Table Structure is recursive ID

  • 0

Hierarchical Structures Database Select By Lambda Expression
Hi My Table Structure is recursive

ID

ParentID

UserGROUPNAME

enter image description here

How Can I select Subset an Id from my contex By Lambda Expression like this

enter image description here

I Try to select first

var keys = db.UsersGroups.Select(x => x).Where(u => u.GroupMasterID == 1).ToArray();

var UsersGroup = db.UsersGroups.Where(x => keys.Contains(x.GroupMasterID));

But I think it’s return wrong or return just 2 level data

Please Help me

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T15:11:05+00:00Added an answer on June 15, 2026 at 3:11 pm

    finally I create a sql function

    like this

    Create  FUNCTION [dbo].[GET_USERGROUPLIST]
    (
        @GROUPID INT
    )
    RETURNS  TABLE 
    AS
    RETURN 
    (
        WITH UsersGroups_CTE AS (
    SELECT *
    FROM [dbo].[UsersGroups]
    WHERE ID = @GROUPID
    UNION ALL
    SELECT e.ID, e.GroupName, e.ParentID ,e.Status
    FROM [dbo].[UsersGroups] e
    INNER JOIN UsersGroups_CTE ucte ON ucte.ID = e.ParentID
    )
    SELECT *
    FROM UsersGroups_CTE Where UsersGroups_CTE.Status = 1
    ); 
    

    and Next Use in my model like this

    db.GET_USERGROUPLIST(1);
    

    Many Thanks to lontivero for him suggestion

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a hierarchical (tree structure) SQL Server table TEmployee with following columns Id
I have Hierarchical data. select lpad(' ', 4*(level-1))||NAME from from_sql where where_sql CONNECT BY
I have a hierarchical structure in a database driven software application. Each row in
My table represents a hierarchical structure with following columns: int ID (PK, unique, not
I want to develop a hierarchical database to store directory structure in the filesystem.
I have a table for product category that has a hierarchical structure. Each Category_ID
I've been trying to think of a way to traverse a hierarchical structure, like
I am binding a treeview using a Hierarchical class structure as follows. Store ->ImagePath
Which is the most suitable tree data structure to model a hierarchical (containment relationship)
I have the following hierarchical table: Table Category: CategoryId, ParentCategoryId, CategoryName 1, null, SomeRoot

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.