I am using Entity Framework Code-First with POCOs to interact with the database. I have a field that is not necessarily called a "Title".
When I get an object from a form, the default mediator automatically makes "Title" null instead of empty.
How do I get model binding to return an empty string instead of a null?
Thanks for any help
source
share