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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:08:57+00:00 2026-05-23T01:08:57+00:00

I have a Project table and a Organization table. Project has a many to

  • 0

I have a Project table and a Organization table.

Project has a many to one relationship with Organization.

Project has a scalar property OrganizationName that references the primary key Name in Organization

I have a create view which is strongly typed to the Project model.

I collect input for the Project.Organization.Name property like so:

<div class="editor-label">
        @Html.Label("Organization Name")
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Organization.Name)
        @Html.ValidationMessageFor(model => model.Organization.Name)
    </div>

The controller handles the post like so :

[HttpPost]
    public ActionResult Create(Project project)
    {
        if (ModelState.IsValid)
        {
            db.Projects.AddObject(project);

            db.SaveChanges();
            return RedirectToAction("Index");
        }

        return View(project);
    }

How can I check to see if the new project.Organization.Name is already in the database? If it is, I want the new project to reference that tuple in the database and not attempt to add it again.

  • 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-23T01:08:58+00:00Added an answer on May 23, 2026 at 1:08 am
    1. Add a UNIQUE constraint to the table. In a multi-user environment, that’s the only way to be sure.
    2. If you must know on the client, query the DB.

    Like this:

    [HttpPost]
    public ActionResult Create(Project project)
    {
        if (ModelState.IsValid)
        {
            var org = db.Organizations.SingleOrDefault(o => o.Name.Equals(project.Organization.Name, StringComparison.CurrentCultureIgnoreCase));
            if (org != null)
            {
                project.Organization = org;
            }
            db.Projects.AddObject(project);
    
            db.SaveChanges();
            return RedirectToAction("Index");
        }
    
        return View(project);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a project table with projectId as primary key: **projectId**, projectName, dateCreated, etc.
I have a table named Project, it has single primary index named Project_Id. Primary
I have two entities: Project, Employee Employee has primary key {employeeId} + some other
i have a project table which has a image_id field and a newsimage_id field.
I have a table in database which has following structure(data) : +--------------------------+ Organization +--------------------------+
I have some doubts in JPA. I have one Employee table and Project table.
Say I wanted to have a project, and one-to-many with to-do items, and wanted
I currently have a table that is listed as follows: projects = Project.find(:all, :conditions
I have a project which requires a table that includes both fixed-width and flexible-width
I have a table Project. It has the following column: Project ID, projectName, UpdateTime

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.