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 8343197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T05:59:04+00:00 2026-06-09T05:59:04+00:00

I have a entity User(Base Class).Which have three child entity Admin ,Manager and Member

  • 0

I have a entity User(Base Class).Which have three child entity Admin ,Manager and Member

By selecting all the user how can I know that particular user is admin or manager or member. I have to show all the user data in the grid with a column Name as type where I need to show Admin or Manager or Member

  • 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-09T05:59:05+00:00Added an answer on June 9, 2026 at 5:59 am

    Here’s a complete solution to this.
    Simple call the GetType() method for each instance

    And the output is enter image description here

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace TestBaseUserConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                var users = new List<User>
                    {
                        new User {Name = "User1"},
                        new Manager {Name = "User2"},
                        new Member {Name = "User3"},
                        new Student {Name = "User4"}
                    };
    
                users.Select(p => new { p, UserTpe = p.GetType().Name })
                     .ToList()
                     .ForEach(t => Console.WriteLine("User Name = {0}, User Type = {1}", t.p.Name, t.UserTpe));
                Console.ReadLine();
            }
        }
    
        public class User
        {
            public string Name { get; set; }
        }
    
        public class Manager : User { }
        public class Member : User { }
        public class Student : User { }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an entity loaded by Hibernate (via EntityManager ): User u = em.load(User.class,
it's possible to have one entity object (class, e.g. User) for more entity models
I have two classes, user and role, defined as: public class User : Entity
I have the following two entities: @Entity class Relation{ @ManyToOne private User user; //some
I have two tables with relation: modelBuilder.Entity<User>() .HasOptional(u => u.Subscription) .WithMany(); how can I
Let's say I have a base class named Entity . In that class, I
I have a generic base repository class for LINQ-to-Entities that can do things like
I have a problem With Entity Framework and TPC Inheritance With Self-Referencing Child Class.
If you have a user entity, you could store his/her address in two ways.
I have a 'vanilla' install of CodeIgniter 2 + Doctrine 2. My tutorial Entity.User.dcm.yml

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.