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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:10:54+00:00 2026-05-25T23:10:54+00:00

I am new to .NET MVC (Learning). I have the following method in Controller(this

  • 0

I am new to .NET MVC (Learning). I have the following method in Controller(this is not clean code and I am learning)

        [HttpPost]
        public ActionResult Edit(ProductCategoryLocation viewModel)
        {
            if (ModelState.IsValid)
            {
                var product = viewModel.Product;
                product.Category = db.Categories
                    .Where(c => c.ID == viewModel.CategoryID).Single();                                 
                db.Entry(product).State = EntityState.Modified;               
                db.SaveChanges();
                return RedirectToAction("Index");
            }
            return View(viewModel);
        }

The View Model Has Product, Location and Category Types and CategoryID and LocationID. In the POST method I am getting the category ID from the View Model, Update the Category of the Product and then Update the Model to the Database. Any changes to the properties of Products gets saved except the manually changed Category.

Is there a mistake / Am I missing something?
Is this the right way of doing update using View Model?

  • 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-25T23:10:54+00:00Added an answer on May 25, 2026 at 11:10 pm

    You can directly assign CategoryID of the view model to CategoryID of the product. This way you do not have to retrieve the category from the database.

        [HttpPost]
        public ActionResult Edit(ProductCategoryLocation viewModel)
        {
            if (ModelState.IsValid)
            {
                var product = viewModel.Product;
                product.CategoryID = viewModel.CategoryID;                                
                db.Entry(product).State = EntityState.Modified;               
                db.SaveChanges();
    
                return RedirectToAction("Index");
            }
    
            return View(viewModel);
        }
    

    If you do not have a scalar property CatagoryID you have to define it in the Product class

    public class Product
    {
       public int ID { get; set; }
    
       //other properties
    
       public int CategoryID { get; set; }
       public virtual Category Category { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a brand new asp.net mvc 3 project. I did not modify the
I've been learning the new ASP.NET MVC framwork lately and I've developed a test
My new ASP.NET MVC Web Application works on my development workstation, but does not
I have a new ASP.NET MVC project (my first), and I had been running
I have a new asp.net mvc project and i am trying to figure out
I created a new ASP.NET MVC application. The home page looks like this: I
I am following the Nerd Dinner tutorial as I'm learning ASP.NET MVC, and I
I'm kind of new to the .NET platform. And currently I'm learning ASP.NET MVC.
I have just started learning asp.net mvc and one reason of the primary reasons
I am still learning ASP.NET MVC. With webforms, I would create a new folder

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.