Creating a multi-select list

xvzoreyrl
timer Asked: Feb 3rd, 2014

Question Description

Hi, I am having difficulty successfully creating a multi select list. At the moment the property 'HairColourIds' is set as an 'int' and the search result only shows one selected item's results, not two when selected in the multi select list. I know I need to change it to an IEnumerable type,, but how can I adjust my list (below) so that it works properly?

       

public IEnumerable<Person> FindPeople(PersonSearchCriteria searchCriteria, int personId)

{

var hairColourList = new List<int>();

if (searchCriteria.HairColourIds != null)

{

organisationList.Add(searchCriteria.HairColourIds.Value);

}

var result = this.connectionStringSettings.Connection()

.Query<Person>(

"abc.GetPeople",

new

{

 HairColourIds = hairColourList

PersonId = personId

});

return result;

}



User generated content is uploaded by users for the purposes of learning and should be used following Studypool's honor code & terms of service.

This question has not been answered.

Create a free account to get help with this and any other question!

Related Tags

Brown University





1271 Tutors

California Institute of Technology




2131 Tutors

Carnegie Mellon University




982 Tutors

Columbia University





1256 Tutors

Dartmouth University





2113 Tutors

Emory University





2279 Tutors

Harvard University





599 Tutors

Massachusetts Institute of Technology



2319 Tutors

New York University





1645 Tutors

Notre Dam University





1911 Tutors

Oklahoma University





2122 Tutors

Pennsylvania State University





932 Tutors

Princeton University





1211 Tutors

Stanford University





983 Tutors

University of California





1282 Tutors

Oxford University





123 Tutors

Yale University





2325 Tutors