Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IValueProvider in MVC 2 RC 2

I have been working with MVC 2 and it seems that at some point of time the ModelBindingContext.ValueProvider class has been removed and replace with IValueProvider. Because of this im having trouble iterating through the ValueProvider.Keys. Here is an example and the message I receive from Code complete

private void foo(ModelBindingContext myMBC)
{
     var myImportantKeys = myMBC.ValueProvider.Keys.where(keyValue => keyValue.StartsWith("important", StringComparison.InvariantCulture);
     foreach(var importantKey in myImportantKeys)
     {

     }
}

The message I get is System.Web.MVC.IValueProvider does not contain a definition for Keys. Could someone enlighten me on how to get around this.

like image 311
John Hartsock Avatar asked Feb 18 '10 16:02

John Hartsock


1 Answers

Gosh, that code looks familiar!

You can't get a list of Key values from IValueProvider. You have to go to the source, e.g:

var keys = controllerContext.HttpContext.Request.QueryString.AllKeys.Where(...
like image 58
Craig Stuntz Avatar answered Oct 14 '22 07:10

Craig Stuntz