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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:57:11+00:00 2026-06-08T21:57:11+00:00

I want to implement a base class for my entities, so I don’t have

  • 0

I want to implement a base class for my entities, so I don’t have to define a Guid Id field in each entitiy. I have created the following base class:

public abstract class IdableEntity
    {
        [Key]
        public Guid Id { get; set; }

        protected IdableEntity()
        {
            Id = Guid.NewGuid();
        }
    }

This is done becuase as far as I know I can just use [DatabaseGenerated…] attribute in this case, since I would have to go to a database and alter all the table’s ID field to have (newid()) call as an “initializer”. This is very inconvenient if one has many entity classes – therefore many tables.

But now, I will have to decleare a constructor with a call to base constructor in each child class, right? If so, does it even worth it?

  • 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-08T21:57:12+00:00Added an answer on June 8, 2026 at 9:57 pm

    If you use your code the way it is, all you’ll need to do is this:

    public class ChildEntity : IdableEntity
    {
        // ...
    }
    

    When you create instances of the ChildEntity class, the protected base IdableEntity constructor will automatically be called because it takes no parameters.

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

Sidebar

Related Questions

I have an abstract base class and want to implement a function in the
How to implement casting to a private base class in C++? I don't want
I want to implement a function in the base class but I also want
If I have a base class that implement INotifyPropertyChanged public class ResourceWrapperBase : INotifyPropertyChanged
If I have a base class and two derived classes, and I want to
I want to implement a simple VersionedModel base model class for my app engine
I have a base class which contains an abstract/MustInherit method. I want this method
I have a base class in which I want to specify the methods a
i starter in jqgrid, i want implement inline edit in jqgrid i have this
given this class definition: public class Frame { IFrameStream CapturedFrom; } I want implement

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.