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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:32:34+00:00 2026-05-24T04:32:34+00:00

I am creating a web application that manages documents. These documents have stages. Users

  • 0

I am creating a web application that manages documents. These documents have stages. Users will be able to reject these documents from the current stage back to the previous stage.

So the flow will be like this Document stage one approved > Get next stage and set document stage to next stage > Document stage one REJECTED > Get previous stage and set document stage to previous stage.

Now what I need help with is how to manage the stages back and forth and what is the best way to setup my entities?

Example Entities

public class Document
{
    public virtual int Id { get; set; }
    public virtual string Name { get; set; }
    public virtual Stage Stage { get; set; }
}

public class Stage
{
    public virtual int Id { get; set; }
    public virtual string Name { get; set; }
}
  • 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-05-24T04:32:35+00:00Added an answer on May 24, 2026 at 4:32 am

    Use an enum

    Replace your class Stage with an Enum

    public enum Stage
    {
       Rejected, None, Approved, Etc 
    }
    

    In your NHibernate mapping simplay add the Stage enum to your map

    <property name="Stage"></property>

    In your db you can simply create the Stage column to an int32 and Nhibernate will figure out how to persist and load the enum automagically.

    The advantage of using an enum is that you can always cast the enum to an int and decrement or increment to get the previous or next stage (assuming that you are simply adding them in 0..N).

    Stage nextStage = (Stage)(((int)currentDocument.Stage)++);
    Stage previousStage = (Stage)(((int)currentDocument.Stage)--);
    

    Otherwise you can use a linq query to get the previous or next steps.

    Edit

    So far in your requirements you haven’t listed that you need anything of the complexity of a generic workflow. Here is a sample app which uses WWF with a document approval system similiar to what you require.

    • http://www.codeproject.com/KB/WF/wwf_basics_files.aspx

    Until you actually need something of the WWF complexity. I would recommend that you use the enum and then refactor when your requirements change. This way you’re not implementing a feature “just in case”.

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

Sidebar

Related Questions

I'm creating a web application that uploads websites from my server to youtube on
I'm creating a small application on an embedded device that has a boa web
When creating a web application, and lets say you have a User object denoting
For a web application, when creating the user which will connect to the MySQL
I'm creating an ASP.NET web application to schedule tasks on our server from a
I have just re-implemented an ASP.NET web application that uses NHibernate to use a
We have an existing Web application and we want to migrate from a custom
I am in the process of designing a web application which will have multiple
I'm creating a web application for work where the user has to enter the
I am part of a team creating a web application using PHP and MySQL.

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.