Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
3answers
6k views

ASP.NET MVC - Mixing Custom and Default Model Binding

I have a type: public class IssueForm { Order Order {get; set;} Item Item {get; set;} Range Range {get; set;} } I created a custom model binder due to requirements on Order and Item, ...
17
votes
2answers
2k views

ASP.net MVC v2 - Debugging Model Binding Issues - BUG?

I am having more than a little difficulty trying to debug why MVC is not binding correctly in a given case I have... Basically, I have my action which receives a complex object which in turn has a ...
14
votes
3answers
910 views

Modelbinding for empty query string parameters in ASP.NET MVC 2

The behavior described here appears to now be the default for ASP.NET MVC 2 (at least for Preview 1). When modelbinding a querystring like this : ?Foo=&Bar=cat The following binding occurs ...
11
votes
2answers
2k views

Unit testing custom model binder in ASP.NET MVC 2

I've wrote custom model binder in project, that uses ASP.NET MVC 2. This model binder bind just 2 fields of model: public class TaskFormBinder : DefaultModelBinder { protected override void ...
11
votes
4answers
4k views

ASP.NET MVC posted file model binding when parameter is Model

Is there any way to get posted files (<input type="file" />) to take part in model binding in ASP.NET MVC without manually looking at the request context in a custom model binder, and without ...
9
votes
4answers
3k views

ASP.NET MVC 2 - ViewModel Prefix

I want to use RenderPartial twice in my view with different models associated. The problem is that some properties are present in both models (nickname, password). They have no prefix, so even the ...
9
votes
1answer
9k views

ASP.NET MVC2 - Custom Model Binder Examples

I am trying to find some examples of building a custom model binder for a unique binding scenario I need to handle, but all of the articles I found were for older versions of MVC which are no longer ...
9
votes
3answers
2k views

ASP.NET MVC 2 - Setting values on IValueProvider

I am attempting to upgrade my MVC 1 project to MVC 2 RC. We currently have a custom modelbinder that adds items to the ValueProvider (this worked when it was a dictionary). We then passed this off to ...
7
votes
1answer
419 views

Is there any way to disable the JSON ModelBinder in ASP.NET MVC 3 RC2?

In ASP.NET MVC 3 RC2, the default ModelBinder will automatically parse the request body if the Content-Type is set to application/json. Problem is, this leaves the Request.InputStream at the end of ...
6
votes
2answers
824 views

MVC3 Razor model binder and inherited collections

I hope I'm not missing something incredibly obvious here but is there any reason why model binder is always having trouble binding a view model that inherits from a collection? Lets say I want to ...
6
votes
4answers
570 views

Model Binder in ASP.NET webforms

For number of years I did ASP.NET web forms development I was spoiled by a proprietary library, which allowed me to do things like: UpdateToObject(ControlsCollection, obj) ...
6
votes
3answers
1k views

How to use NInject (or other DI / IoC container) with the model binder in ASP.NET MVC 2?

Let's say I have an User entity and I would want to set it's CreationTime property in the constructor to DateTime.Now. But being a unit test adopter I don't want to access DateTime.Now directly but ...
6
votes
1answer
350 views

DefaultModelBinder Problem with nested levels + other binders

I have what I would think is a somewhat normal situation where I need to bind form posts to an "order" model. This model has a few levels of information to it: Order.Billing.FirstName ...
6
votes
4answers
2k views

Why does ASP.NET MVC care about my read only properties during databinding?

Edit: Added bounty because I'm seeking an MVC3 solution (if one exists) other than this: DataAnnotationsModelValidatorProvider.AddImplicitRequiredAttributeForValueTypes = false; I have a read only ...
6
votes
2answers
1k views

ASP.NET MVC UpdateModel with interface

I am trying to get UpdateModel to populate a model that is set as only an interface at compile-time. For example, I have: // View Model public class AccountViewModel { public string Email { get; ...
6
votes
1answer
524 views

How to Unit Test a custom ModelBinder using Moq?

I'm having some difficulty writing some Unit Tests to test a custom ModelBinder that I created. The ModelBinder I'm trying to Unit Test is the JsonDictionaryModelBinder that I posted here. The ...
6
votes
3answers
3k views

Custom Model Binder for Complex composite objects HELP

I am trying to write a custom model binder but I'm having great difficulty trying to figure how to bind complex composite objects. this is the class I'm trying to bind to: public class Fund { ...
5
votes
2answers
1k views

Example IModelBinderProvider implementation for ModelBinder constructor injection in MVC 3

I need to wire my custom ModelBinder up to my DI container in MVC 3, but I can't get it working. So. This is what I have: A ModelBinder with a constructor injected service. public class ...
5
votes
2answers
797 views

What is the difference between BindProperty and SetProperty on IModelBinder

I'm creating a custom model binder in an Mvc application and I want to parse a string to an enumeration value and assign it to the model property. I have got it working overriding the BindProperty ...
5
votes
1answer
703 views

ASP.NET MVC 1.0 - Model binder for Dictionaries

I have a ViewModel class containing a Dictionary (and other irrelevant things for this question): public class MyViewModel { public Dictionary<int, string> Data { get; set; } /* ... */ ...
5
votes
1answer
803 views

Testing Model binding in ASP.NET MVC 2

First; I know that I should not need to test the internals of MVC but I REALLY need a suite a tests around data flowing into our system. How can I, I hope without mocking all of HTTP context, test ...
5
votes
1answer
299 views

Where is the documentation for the standard ASP.NET MVC ModelBinder?

I don't seem to be able to find any authoritative, up-to-date (i.e. for 1.0 final) documentation for the capabilities of the standard model-binder in ASP.NET MVC, particularly with respect to binding ...
5
votes
4answers
489 views

Which Method of Model Binding Has Best Unit Test Semantics in ASP.NET MVC?

Definitions In ASP.NET MVC, there are two ways to do model binding in an action. Let's call these the "Bind arguments way" and the "UpdateModel way." Both of them do almost exactly the same thing, ...
5
votes
3answers
1k views

Modelbinding database entities in ASPNET MVC

I'm having trouble trying to think what the best way is to recreate a database object in a controller Action. I want to make use of ModelBinders so in my action I have access to the object via a ...
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
2answers
318 views

How can I provide my own ICustomTypeDescriptor in ASP.NET MVC?

I'm working on a small library for for ASP.NET MVC 3 that should offer better reusability of model metadata and easy mapping from data entities from / to custom viewmodels. For this I need to be able ...
4
votes
3answers
2k views

Why Two Classes, View Model and Domain Model?

I know it could be bad to use domain models as view models. If my domain model has a property named IsAdmin and I have a Create controller action to create users, someone could alter my form and get ...
4
votes
1answer
204 views

Is it OK for a Model Binder to do a Repository Lookup?

I am building an MVC application and am designing a custom model binder for a class; Essentially one of the fields of the model is an object that exists in the database, but it is proving very ...
4
votes
2answers
1k views

ValueProvider does not contain a definition for TryGetValue

In my application, I am trying to split the Date and Time from and DateTime field so I can put a jQuery date picker on the date. I found Hanselman's code for splitting the DateTime, however I get a ...
4
votes
2answers
946 views

ASP.NET MVC Model Binding IList in an Editor Template

I am attempting to bind a list that is part of a larger view model without resorting to a custom model binder. When I use an editor template to build the list of inputs, the generated names are not in ...
4
votes
1answer
2k views

Setting ModelState values in custom model binder

I am using custom model binder in ASP.NET MVC 2 that looks like this: public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { if ...
4
votes
2answers
765 views

Asp.Net MVC 2 - Iterate Through Form Values In Model Binder

I have a list of items in my form which are named like this... <input type="text" id="ListItem1" name="ListItem1"> <input type="text" id="ListItem2" name="ListItem2"> <input ...
4
votes
2answers
3k views

ASP.NET MVC - POST Action Method with Additional Parameters from URL

With ASP.net MVC is it possible to POST a form to a controller action which includes parameters not in the form, but from the URL? For example The Action method in GroupController: ...
4
votes
3answers
3k views

Custom DateTime model binder in Asp.net MVC

I would like to write my own model binder for DateTime type. First of all I'd like to write a new attribute that I can attach to my model property like: [DateTimeFormat("d.M.yyyy")] public DateTime ...
4
votes
2answers
549 views

asp.net mvc strongly typed view model with multiselect

I would like to know how i can bind my form values to my strongly typed view from a MultiSelect box. Obviously when the form submits the multi-select box will submit a delittemered string of my ...
4
votes
1answer
1k views

MVVM and ModelBinders in the ASP.NET MVC Framework

I've got a series of views, each are typed to have their own ViewModel class which contains everything they need to display themselves, for example: public class CreateResourceViewModel { public ...
4
votes
3answers
2k views

Updating Parent/Child Records with model binders in ASP.Net MVC

I have modified the Nerd Dinner application to allow editing of child records by adding the following code to the DinnerForm.ascx <p> <%int i = 0; foreach (NerdDinner.Models.RSVP ...
4
votes
4answers
3k views

ASP.NET MVC UpdateModel empty property

Given the following Model, public class A { public string Name { get; set; } } public class B { public string Address { get; set; } public A InstanceOfA { get; set; } } View, <%= ...
4
votes
3answers
4k views

ASP.NET MVC - Multiple models in a form and model binders

I have a form which needs to populate 2 models. Normally I use a ModelBinderAttribute on the forms post action i.e. [Authorize] [AcceptVerbs("POST")] public ActionResult ...
3
votes
1answer
118 views

How do I achieve ModelBinding with Html.RenderAction?

I'm working through a MVC book which uses the older version of Html.RenderAction. So it looks like this in the book Html.RenderAction("Summary", "Cart"); I have had to convert to ...
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
1answer
171 views

Retrieving data from view, should I use model binder?

I am a bit lost here as I have not really looked at model binders so if possible, can one advise me if I am actually thinking about my problem correctly... :) and if my code is way of, please ...
3
votes
2answers
979 views

MVC3 Security & Model Binding for a dynamic object

I really need a second set of eyes on this so I'm hoping some of you can give me some feedback, I think I've been staring at it too long. I'm trying to setup a website using ASP.NET MVC3, and in this ...
3
votes
1answer
776 views

ASP.NET MVC - Alternative for [Bind(Exclude = “Id”)]

Is there an alternative for [Bind(Exclude = "Id")] (Related Question) ? Could I write a model binder?
3
votes
3answers
448 views

Generic TimeSpan binding in Asp.NET MVC 2

I have an input form that is bound to a model. The model has a TimeSpan property, but it only gets the value correctly if I enter the time as hh:mm or hh:mm:ss. What I want is for it to capture the ...
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
933 views

MVC2 Modelbinder for List of derived objects

I want a list of different (derived) object types working with the Default Modelbinder in Asp.net MVC 2. I have the following ViewModel: public class ItemFormModel { ...
3
votes
3answers
281 views

How [and where] implement a validation using ModelBinder

I'm developing a little site using ASP.NET MVC, MySQL and NHibernate. I have a Contact class: [ModelBinder(typeof(CondicaoBinder))] public class Contact { public virtual int Id { get; set; } ...
3
votes
2answers
289 views

How to use two instances of the same .ascx in the same page in ASP.NET MVC?

I have two instances of an Address.ascx control in an ASP.NET MVC page. <h1>Shipping Address</h1> <% Html.RenderPartial("Controls/AddressControl"); %> <h1>Billing ...
2
votes
2answers
492 views

.Net MVC3 Custom Model Binder - Initially Loading Model

I am creating a custom model binder to initially load a model from the database before updating the model with incoming values. (Inheriting from DefaultModelBinder) Which method do I need to override ...

1 2 3 4