The application I'm working on runs a report in SSRS. I'm adding the parameters for a dropdown list. The way that I'm pulling the list from the database has changed. I'm now pulling a list of instructors from a table that only has the instructor name and no id, as I used before. I was pulling and using the instructor ID and instructor Name for the key and value. I now have only the instructor name. So, I changed all of the entries in the application to have only a single string. and am using the
CONSTANT_DROPDOWNLIST_VALUE_NAME_DropDownList_Instructors. However, I do get the error that it using the generic IDictionary requires 2 arguments. It wants me to create a new class or type. I've done a search in the application to find all code for the dropdownlist and changed them all. Not sure what I need to do. I've tried creating the class and that does clear the error. But I'm not sure what to put in that class.