Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
2answers
7k views

ASP.NET MVC model binding an IList<> parameter

[I solved this myself, see my answer for cause] I'm having trouble getting form values for a IList<> argument in a controller method set properly. My controller class looks like this: public ...
9
votes
3answers
549 views

Default Model Binder does not bind for Nullable types in IEnumerable

I have a controller action whose definition looks like- public ActionResult ChangeModel( IEnumerable<MyModel> info, long? destinationId) And the model: public class MyModel { public ...
9
votes
1answer
3k views

ASP.NET MVC Model Binder for Generic Type

Is it possible to create a model binder for a generic type? For example, if I have a type public class MyType<T> Is there any way to create a custom model binder that will work for any type ...
8
votes
2answers
496 views

How to update Model when binding to a ViewModel?

I have an [HttpPost] action method signature like this: [HttpPost] public ActionResult Edit(ExistingPostViewModel model) { // Save the edited Post. } Now, in the past (when i didn't use ...
8
votes
3answers
947 views

AutoMapper flattens Domain Models but does it do the opposite? If not, what does?

I've been reading up on AutoMapper because of a response to one of my earlier questions here. It says that AutoMapper flattens complex domain models, but I need something that does the opposite. I ...
8
votes
6answers
4k views

Model Binding on Multiple Model Form Submission from Strongly-Typed View

I'm having problems binding on a form with multiple models being submitted. I have a complaint form which includes complaint info as well as one-to-many complainants. I'm trying to submit the form ...
7
votes
1answer
365 views

ModelBinding in asp.net mvc Beta1

I converted my web application from preview 3 to beta1 and am now trying to put the new functions of the framework to use. One of them is ModelBinding. For this particular situation I created a class ...
6
votes
2answers
2k views

Model Binding to Enums in ASP.NET MVC 3

I have a JsonResult method in my controller that accepts an object as an argument. One of the properties on this object is an enum with three possible values. I assumed that when the client passed in ...
6
votes
1answer
2k views

ASP.Net MVC : Sending JSON to Controller

I want to be able to send JSON as opposed to the standard QueryStrings when making a post to my controllers in ASP.Net MVC. I have the Front-End stuff working fine (building and then submitting my ...
6
votes
2answers
3k views

How does a multiple select list work with model binding in ASP.NET MVC?

If you have a select list set to multiple in ASP.NET MVC, how does the modelbinding work? What does it return for your selected items, an array? <SELECT NAME="toppings" MULTIPLE SIZE=5> ...
6
votes
3answers
2k views

Calling UpdateModel with a collection of complex data types reset all non-bound values?

I'm not sure if this is a bug in the DefaultModelBinder class or what. But UpdateModel usually doesn't change any values of the model except the ones it found a match for. Take a look at the ...
5
votes
3answers
445 views

MVC 3 doesn't bind nullable long

I made a test website to debug an issue I'm having, and it appears that either I'm passing in the JSON data wrong or MVC just can't bind nullable longs. I'm using the latest MVC release, of course. ...
5
votes
2answers
310 views

Good resources for model binding in ASP.NET MVC3 with C#?

I would like to know how exactly model binding works in ASP.NET MVC3. Since I am still waiting for my Professional ASP.NET MVC3 book and I cannot find anything by googling it, you are my last hope. I ...
5
votes
1answer
354 views

MVC Model Binding: why can't I bind to an iterator property?

When my model has an IEnumerable<T> property that is implemented as an iterator (i.e. yield return), MVC's DefaultModelBinder cannot bind to that property when incoming values use square bracket ...
5
votes
1answer
160 views

How can I remove magic strings from custom model binders?

I've written a couple of custom model binders now, and have realised that I've fallen into the trap of relying on magic strings, e.g.: if ...
5
votes
1answer
4k views

ASP.NET MVC2 - Dynamic list of checkboxes and model binding

I'm trying to create a view that contains a list of checkboxes that is dynamically created from a database, and then retrieve the list of selected ones when the form is posted back. My EF model ...
5
votes
3answers
1k views

ASP.NET MVC Model Binding Related Entities on Same Page

This problem has been driving me crazy for several hours now... In my domain, I have 2 entities that are related to each other Sku and Item. Each sku can have many items. public class Sku { ...
5
votes
3answers
326 views

Model binding and GET requests?

There are tons of examples for model binding in html forms, but I'm wondering if its possible to, and if so how to, use model binding for ActionLinks/GET requests. So, given the following model ...
5
votes
3answers
5k views

ASP.NET MVC model binding foreign key relationship

Is it possible to bind a foreign key relationship on my model to a form input? Say I have a one-to-many relationship between Car and Manufacturer. I want to have a form for updating Car that includes ...
4
votes
2answers
160 views

Use custom ASP.NET MVC IValueProvider, without setting it globally?

I want to be able to grab keys/values from a cookie and use that to bind a model. Rather than building a custom ModelBinder, I believe that the DefaultModelBinder works well out of the box, and the ...
4
votes
1answer
772 views

MVC3 model binding does not update the partial view

Any ideas why after adding Model Binding to the controller, the partial view no longer gets updated: All I did was change the signature: from: public ActionResult About2() to: public ...
4
votes
1answer
946 views

ASP.NET MVC - Problem with EditorTemplate for ICollection<T> mapped to Enum

I have an ASP.NET MVC 3 (Razor) website, and a (simplified) model called Review: public class Review { public int ReviewId { get; set; } public bool RecommendationOne { // hook ...
4
votes
2answers
698 views

How can I allow period and comma as valid decimal point separators for floats?

I would like to allow both "123.45" and "123,45" as valid decimal inputs but currently "123.45" results in "The value '123.45' is not valid for Foo".
3
votes
2answers
37 views

Is there a reason why the default modelbinder doesn't bind to fields?

I'm using ASP.NET MVC3 and i'm wondering that the default modelbinder binds to public properties but not to public fields. Normally i just define the model classes with properties but sometimes i use ...
3
votes
2answers
280 views

Do MVC3 non-sequential hidden input indexes need to come first?

MVC3 non-sequential index hidden inputs for model binding.. <input type="hidden" name="Index" value="whatever" /> Does it matter if they go before, after, in the middle of the other related ...
3
votes
1answer
110 views

How can I emulate model binding behaviour when rendering an ActionLink?

In the following code, the get action returns a betting card for a given race date, and the post I use the post action to transform properties of the bound model to route values for the get action. ...
3
votes
1answer
116 views

NullReferenceException when using custom model binder

I am trying to make a binder for an abstract class. The binder decides which implementation of the class to use. public abstract class Pet { public string name { get; set; } public string ...
3
votes
1answer
770 views

How to override the ASP.NET MVC 3 default model binder to resolve dependencies (using ninject) during model creation?

I have an ASP.NET MVC 3 application that uses Ninject to resolve dependencies. All I've had to do so far is make the Global file inherit from NinjectHttpApplication and then override the CreateKernel ...
3
votes
2answers
488 views

Customizing model binding error messages in ASP.NET MVC 3

I'm using ASP.NET MVC 3 with Fluent Validation. I'd like all my error messages to be worded and formatted the same, whether they are validation error messages or model binding error messages. Let's ...
3
votes
2answers
348 views

ViewModel with List<BaseClass> and editor templates

I have a view that lists tables being added to a floor plan. Tables derive from TableInputModel to allow for RectangleTableInputModel, CircleTableInputModel etc The ViewModel has a list of ...
3
votes
2answers
360 views

ASP.NET MVC default binder: too long ints, empty validation error message

I've got the following model class (stripped for simplicity): public class Info { public int IntData { get; set; } } Here's my Razor form that uses this model: @model Info ...
3
votes
1answer
425 views

Finding custom attributes on view model properties when model binding

I've found a lot of information on implementing a custom model binder for validation purposes but I haven't seen much about what I'm attempting to do. I want to be able to manipulate the values ...
3
votes
1answer
74 views

Multiple form elements binding to one model attribute

I have a model public class Foo { public string bar { get; set; } //Other stuff } In my view, I need to present the user with two radio buttons and a drop down list, with the drop down list ...
3
votes
2answers
1k views

DataContract model binding to JSON in ASP.NET MVC Action Method Arguments

MVC3 comes out of the box with JsonValueProviderFactory() which is very handy for binding incoming JSON to a model. Unfortunately, I can't figure out how to setup model contracts with names that ...
3
votes
4answers
10k views

ASP.NET MVC 3 Model-binding and form fields

I have an entity called Domain.Models.BlogPost which contains the following properties: PostID Title Author PostedDate Body I also have an entity called Domain.Models.PostComment which contains ...
3
votes
3answers
800 views

TryUpdateModel throws NullReferenceException in ASP.NET MVC 3 unit test

Since I upgraded from MVC 2 to MVC 3 RC, using TryUpdateModel causes a NullReferenceException. This problem only occurs when running my action method as part of a unit test. Running it on the actual ...
3
votes
2answers
91 views

Validation propagating to related objects

I have a model like this: public class Person { public int ID { get; set; } [Required(ErrorMessage="Name cant be empty")] public string Name { get; set; } public Person Friend { ...
3
votes
1answer
211 views

Model binding & derived model classes

Does ASP.NET MVC offer any simple way to get model binding to work when you have model classes that inherit from others? In my scenario I have a View that is strongly typed to List<Person>. I ...
3
votes
1answer
837 views

Binding to a SelectList in MVC

Once again I'm confronted with a "This shouldn't be this ?*!# hard" situation. Problem: I want to use a form in MVC for creation of an object. One of the elements of the object is a set of limited ...
3
votes
2answers
1k views

Custom HTML attributes on SelectListItems in MVC2?

I have a need to add custom HTML attributes, specifically classes or styles to option tags in the selects generated by Html.DropDownFor(). I've been playing with it, and for the life of me I can't ...
3
votes
1answer
497 views

MVC2 Model Binding Enumerables?

Okay, so I'm fairly new to model binding in MVC, really, and my question is this: If I have a model with an IEnumerable property, how do I use the HtmlHelper with that so I can submit to an Action ...
3
votes
3answers
2k views

ASP.NET MVC 1: Model Binding With Disabled Textbox

I have a textbox that I am defining as <%= Html.TextBox("Username", Model.Form.Username, new { @class = "textbox", @disabled = "disabled" })%> In my action ...
3
votes
1answer
2k views

ASP MVC2 model binding issue on POST with strongly-typed HTML helpers

So I'm looking at moving from MVC 1.0 to MVC 2.0 RTM. One of the conventions I'd like to start following is using the strongly-typed HTML helpers for generating controls like text boxes. However, it ...
3
votes
1answer
2k views

Model binding with nested child models and PartialViews in ASP.NET MVC

I have the following types and classes: { namespace MVC.Models public class Page { public EditableContent Content {get; set; } } public class EditableContent ...
3
votes
1answer
747 views

Hydrating ViewModels in ASP.NET MVC

I have a page that is made up of many user controls. The view model for this page is rather complex. public class ComplexViewModel { public ObjectA ObjectAProperty { get; set; } public ...
3
votes
1answer
213 views

Is this a bug in ASP.NET Model binding?

I have a simple form in ASP.NET MVC. I am trying to post these results to a controller action and I am getting strange behavior. The view is a simple HTML table: Here is part of the HTML form ...
3
votes
2answers
977 views

MVCContrib grid and posting back with model binder

The contents of my MVCContrib grid come from the Model on a strongly typed View. When a post is made, the contents of the grid are not in the model object when it returns to the controller. I can see ...
3
votes
1answer
231 views

More complex(real-life) modelbinding?

Roll with me and imagine the following example: Public ViewResult GiveMeFruit(int personId, string personName, int personAge, int fruitId){ Person person = PersonService.GetPerson(personId); ...
2
votes
2answers
63 views

How to bind a jQuery object containing strings to List<string>?

This is hopefully a one liner. I've read Phil Haack's article http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx and other questions, but those are about <form>s and using ...
2
votes
2answers
118 views

Inherited interface property not found by Model Binding in MVC3 but works fine in MVC2

UPDATE: Problem Solved. Darin Dimitrov's answer contains a link to another, related question. One of the proposed solutions on that page ended up working for us. Original Question The code sample ...

1 2 3 4 5 7