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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T20:17:01+00:00 2026-06-01T20:17:01+00:00

I am using Domain-Driven-Design have an entity called Menu, need to check if the

  • 0

I am using Domain-Driven-Design have an entity called Menu, need to check if the item has up to three levels, the class is now as shown below:

 public class Menu : Entity
    {

        public virtual AreaMenu AreaMenu { get; set; }

        public virtual Menu MenuPai { get; set; }

        public string Title{ get; set; }

        public virtual Site Site { get; set; }

        public Status Status { get; set; }

        public byte StatusId
        {
            get { return (byte)Status; }
            set { Status = (Status)value; }
        }

        public bool VerifyLevels()
        {
            if (this.MenuPai == null || this.MenuPai.MenuPai == null || this.MenuPai.MenuPai.MenuPai == null || this.MenuPai.MenuPai.MenuPai.MenuPai == null)
                return true;

            return false;
        }
    }

This check levels (public bool VerifyLevels()) , it is right to be here in the entity or is correct that it is in the repository?

  • 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-01T20:17:02+00:00Added an answer on June 1, 2026 at 8:17 pm

    Yes, it is right to put validations in your entity. On the other hand, you could call this validation from your repository Save method to validate before saving

    E.g.

    public class MenuRepository : IMenuRepository
    {
        public bool Save(Menu menu)
        {
            if (!menu.VerifyLevels())
                return false;
    
            if (menu.ID == 0)
                context.Menus.AddObject(menu);
            else
                context.ObjectStateManager.ChangeObjectState(menu, EntityState.Modified);
            context.SaveChanges();
    
            returns true;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is anyone using the techniques from Domain Driven Design? I've recently read the Eric
Ok so I've ordered Applying Domain-Driven Design and Patterns: Using .Net , but while
I have been building a new application using my current understanding of domain driven
Is it easier to implement domain-driven design when using guids as identity fields instead
Domain driven design has become my architecture of choice. I've been able to find
I have just been re-reading Domain-Driven Design: Tackling Complexity in the Heart of Software
After reading Eric Evans' Domain driven Design I have a few questions. I searched
While I have been dealing with domain-driven design (DDD) for quite some time now,
I'm going to write an ASP.NET MVC 2 application using Domain Driven Design. I'm
This is an ASP.NET MVC website. Following domain driven design, we have a service

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.