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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T16:50:03+00:00 2026-06-13T16:50:03+00:00

when i try to save this model, the menu.Roles field is always null ,

  • 0

when i try to save this model, the menu.Roles field is always null, and save change method doesn’t change the Roles field

tables are Menu, RoleMenu and Role

so, i have a pair many-2-many models:

Menu has a Roles filed
Role has a Menus fields

action method:

    [HttpPost]
    public ActionResult Edit(Menu menu, IEnumerable<int> RoleIDs)
    {
        if (ModelState.IsValid)
        {
            var roles = _db.UserRoles.Where(rl => RoleIDs.Contains(rl.Id)).ToList();

            menu.Roles = new List<UserRole>();
            menu.Roles.AddRange(roles);

            _db.Entry(menu).State = EntityState.Modified;
            _db.SaveChanges();
            return RedirectToAction("Index");
        }
        ViewBag.ParentMenuId = new SelectList(_db.Menus, "Id", "Name", menu.ParentMenuId);
        ViewBag.RoleIDs = new SelectList(_db.UserRoles.ToList(), "Id", "Name");
        return View(menu);
    }

view:

//...other VS auto generated fields...
<div class="editor-label">
        @Html.LabelFor(model => model.Roles, "Roles")
</div>
<div class="editor-field">
        @Html.ListBox("RoleIDs")
        @Html.ValidationMessageFor(model => model.Roles)
</div>
<p>
        <input type="submit" value="Save" />
</p>

mapping:

            modelBuilder.Entity<Role>()
             .HasMany(role => role.Menus)
             .WithMany(menu => menu.Roles)
             .Map(m =>
              m.MapLeftKey("RoleId").
                 MapRightKey("MenuId").
                 ToTable("RoleMenu"));
  • 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-13T16:50:04+00:00Added an answer on June 13, 2026 at 4:50 pm

    retrieve it from db by id. then problem solved

    but i think this is not the best solution

        [HttpPost]
        public ActionResult Edit(Menu menu, IEnumerable<int> RoleIDs)
        {
            var menuReal = (from m in _db.Menus.Include("Roles")
                            where m.Id == menu.Id
                            select m).FirstOrDefault();
    
            var roles = _db.UserRoles.Where(rl => RoleIDs.Contains(rl.Id)).ToList();
    
            menuReal.Roles = roles;
    
            _db.Entry(menuReal).State = EntityState.Modified;
            _db.SaveChanges();
            return RedirectToAction("Index");
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When i try to save data to my model Doctrine throws this exception: Message:
My model has a SlugField. When I try to save an instance of this
I try to save a m2m relation of a model. This ends up in
I am getting a weird crash when I try to save my model. This
this is the problem once i try to save data into db with sql
I'm using this piece of code to try and save an image to the
according to this image, i try to save data in NSUserDefaults but my App
When I try to save a certain of my ActiveRecord instances, I get this
I'm getting an error when I try to save a model that has a
I have this controller: [HttpPost] public ActionResult Create(Company company) { // try to save

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.