Skip to content
Advertisement

Can’t save multiple selections in select list – asp.net core web app razor pages

Here I am able to bind the multi-select select list on the create page.

The biggest problem I’m having is that I am trying to edit/post values and there’s no direct field to bind to in my model.

Multi-select binding

I have found a good example here, but it only shows you how to save 1 selection. https://www.learnrazorpages.com/razor-pages/forms/select-lists

My SecurityLog Model has this

My Officer Model has this

I do not have a SecurityLogOfficer Model. Do I need one?

And here is my database schema and sample results

Sql Database Schema

Any assistance would be appreciated!

* UPDATE *

Thank you for your suggestion to bind to a list and change the asp-for to that list. Here is my updated code. SelectedOfficerIds does store the selected id’s.

I am posting to two different databases (1 record should go to SecurityLog, and multiple to SecurityLogOfficer), but since I am calling savechanes() twice it is actually posting multiple records to the SecurityLog db and on the second for loop save I receive an error

Cannot insert explicit value for identity column in table ‘SecurityLogOfficer’ when IDENTITY_INSERT is set to OFF

Is there a way to clear out _context for SecurityLog so I only post once and how can I address the identity_insert issue? The db, SecurityLogOfficer, already has identity insert on.

Update 1/9/2020

@XingZou – Thank you for the quick reply. I attempted to implement your steps and everything worked out perfectly!!!

I do have one additional question if you don’t mind? I am attempting to get a list of the selected values on the Edit Page and cannot set the values. This is what I tried so far…

Here is my Edit Page Model…

Here is my Edit razor page…

Advertisement

Answer

You need to bind the dropdown list to a list of int instead of object.

In PageModel, add a new property which stores all selected Ids:

On Razor Pages,bind the multiple select to SelectedOfficerIds

When you submit form, you will get new Officer ID list of the SecurityLog in you post handler.

Update 1/9/2020

There is no direct relationship between SecurityLog and Officer. There is a one-to-many relationship between SecurityLog and SecurityLogOfficer and a many-to-one relationship between SecurityLogOfficer and Officer.

From you description, it is many-to-many relationships between SecurityLog and Officer. 1.Remove the ID of SecurityLogOfficer,it uses composite key now

2.Configure many-to-many relationship like below.

3.Add migrations and Update database.

Is there a way to clear out _context for SecurityLog so I only post once

4.In your PageModel, save data like below

Update 1/10/2020

To get multiple selected values in Edit Page, use below code before return Page() in get handler

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement