Skip to main content

MVC error Unable to cast object of type 'System.Int32' to type 'System.String'.

If you are getting following error while posting back data in MVC


Unable to cast object of type 'System.Int32' to type 'System.String'.

Check for the validation attributes on the number data types. If you have a StringLength attribute on a numeric datatype, MVC autobinding converts the field to a string and causes above error while autobinding.

Instead use RegularExpression to limit numbers in a numeric field.

 

Comments

Anonymous said…
Thanks for you post - this was my problem, except I had StringLength on a boolean!
Anonymous said…
This comment has been removed by the author.
Unknown said…
This comment has been removed by the author.

Popular posts from this blog

Why there is semicolon at the start of a JavaScript function?

Very often while reviewing the code for my team, I will come across a semicolon at the start of JavaScript function as show below ; (function () { 'use strict'; ...and I often wondered what purpose it served. Guess what. It is an insurance to make sure your script works fine when all other scripts are merged together;  The leading ; in front of immediately-invoked function expressions (iffe) is there to prevent errors when appending the file during concatenation to a file containing an expression not properly terminated with a ;. So there you go. Now you know what that little semicolon is doing there in your code.

What is Event Sourcing?

If you scratching your head and wondering what is Event Sourcing, this is a very good article to start. https://www.erikheemskerk.nl/event-sourcing-awesome-powerful-different/ I couldn't have explained it any better.