vote up 9 vote down star
1

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 (assuming you're binding to a model with 'Foo' and 'Bar' string properties)

ASP.NET MVC 1

 model.Foo = "";
 model.Bar = "cat":

ASP.NET MVC 2 (preview 1)

 model.Foo = null;
 model.Bar = "cat":

Wanted to give anyone who is playing with V2 a heads up since this wasn't mentioned in the 'gu-notes'. Also curious if anyone in the know can comment on whether or not this will be the final implementation or a configurable feature? I'm fine either way but just hope they dont switch back to the old way ! Being configurable would be even better.

Edit: The lesson to learn from this point is whatever version you're developing against not to write code that says Foo.Length == 0 to test for an empty string or Foo.Length > 3 to check for a minimum length. Use string.IsNullOrEmpty(Foo) and/or check for null first.

flag

40% accept rate
Thanks for the info, Simon! – Daniel Elliott Aug 14 at 15:34

3 Answers

vote up 0 vote down

Null is more representative of what it actually is, and it is compatible with other nullable types besides string, so I imagine it's by design.

link|flag
i could see this being a problem for people that have already built large applications assuming "" and checking Foo.Length == 0. perhaps they had to do it because of some of the new binding functionality. i kinda like having "" sometimes becasue it shows me that something was actually set but thats a minor point – Simon Aug 12 at 6:01
Anyone investing that heavily in ASP.Net MVC already should have considered an upgrade path considering how young the MVC framework is. – womp Aug 13 at 4:18
string.IsNullOrEmpty(..) should cover your bases anyway. – Runeborg Aug 13 at 12:08
@runeborg fortunately for me it was a 5 minute fix and minimally invasive – Simon Aug 19 at 0:28
vote up 0 vote down

One way to configure would be to replace the default model binder in V2 (or V1) to get consistent behavior. I prefer the null, myself.

link|flag
vote up 1 vote down

I prefer the behavior of v1. How will you be able to pass an empty string in v2? Additionally, with the latter you can't tell whether foo is in the query parameters or not.

link|flag
nothing like a nullreferenceexception to tell you that you forgot to send something right! at first i thought that really bugged me, but i'm ok with it thinking further. rarely do you need to pass an empty string (or rather distinguish it from a null) in a web context. if you really have to then perhaps they'll have attributes you can decorate properties with. i think we'll see some cool modelbinding features in V2 and i would expect this to factor into that – Simon Aug 13 at 18:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.