Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7924643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T17:51:16+00:00 2026-06-03T17:51:16+00:00

I have a model I would like to use in a form using EditorForModel()

  • 0

I have a model I would like to use in a form using EditorForModel(). For all non-String data types (like bool, DateTime etc), the form created makes the fields required, even though I have not set the [Required} data annotation. How do I set the Object.cshtml file to recognize that this is not a required field?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T17:51:18+00:00Added an answer on June 3, 2026 at 5:51 pm

    It’s not a “Required” problem, it’s the base ModelBinding comportement : non nullable types cannot be null in the DefaultModelBinder. If ModelBinding fails, Model.IsValid = false => display this kind of errors.

    You wouldn’t have an “error” message with a bool? (which is nullable) or with a string (same), but you’ll have with a bool (which isn’t).

    (it’s basic “strong type logic” : try to write DateTime dt = null in c#…)

    So one solution could be to create a new ModelBinder (saying all “null” bool are set to false, for example). But I’m really not sure that’s what you need. The default behavior is generally fine

    I just give you an example of CustomModelBinder : we use it to avoid having to type 0 values in most of our numeric fields : it’s set value to 0 when no value has been typed in field with Int32, UInt32 and double values

    public class AcceptNullAsZeroModelBinder : DefaultModelBinder
        {
            protected override void SetProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, System.ComponentModel.PropertyDescriptor propertyDescriptor, object value)
            {
                if (value == null && (
                    propertyDescriptor.PropertyType == typeof(Int32) ||
                    propertyDescriptor.PropertyType == typeof(UInt32) ||
                    propertyDescriptor.PropertyType == typeof(double)
                    ))
                {
                    base.SetProperty(controllerContext, bindingContext, propertyDescriptor, 0);
                    return;
                }
    
                base.SetProperty(controllerContext, bindingContext, propertyDescriptor, value);
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that edits an instance of my model. I would like
I would like to use form_for except I have class table inheritance models using
I have a simple model from simulink and I would like to generate code
I have a DateTimeField called created in my model and I would like to
I have an existing model for my project. I would like to switch to
I have a Ticket model which has_many :tags . I would like to find
I have DirectX .x files and I would like to display the model in
I have legacy code which stores temporary data in the context. I would like
I have various models of which I would like to keep track and collect
I have two models, A and B, and one light, L. I would like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.