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

  • Home
  • SEARCH
  • 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 table like as follows: SoftwareName Count Country Project 15 Canada Visio
I have a table representing values of source file metrics across project revisions, like
I have a 3 table SQLServer Database. Project ProjectID ProjectName Thing ThingID ThingName ProjectThingLink
I have created a a subclass of Table in my ASP.NET project which creates.
I am using ASP.NET Dynamic Data for a project and I have a table
I have a project here that connects to an in-production database and grabs tables
I have a VS2005 deployment & setup project, that makes use of the Tablet
i have project in ASP.NET MVC 3 and a mysql database that contains a
I have a database table which stores a type for a project which stores
we have database with some table-valued functions writen in C#. I have database project

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.