I have a function that returns a list of ids based on a separate selection. This function returns all the ids and they are displayed as checkboxes in the view. Once I select some of the checkboxes, they are saved to the database as a comma delimited string. When editing the selections, the user needs to be able to deselect selected check boxes and select alternate ones. The issue I have is how to set the checkboxes as checked that exist in comma delimited string in the database. I have a linq statement that creates an array of strings, but I'm not sure how to check any of the checkboxes that are in the array based on their ID.I have a function that returns a list of ids ba