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

  • Home
  • SEARCH
  • 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 9005529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T01:10:10+00:00 2026-06-16T01:10:10+00:00

I have a datagridview which is databound to an Entity Framework table: public ObjectSet<TEntity>

  • 0

I have a datagridview which is databound to an Entity Framework “table”:

    public ObjectSet<TEntity> tableData { get; private set; }
    private BindingSource tableBinding;

    public AuxiliaryTableEditor(ObjectSet<TEntity> something)
    {
        InitializeComponent();

        this.tableData = something;
        this.tableBinding = new BindingSource();
        this.tableBinding.DataSource = tableData;

        this.auxiliaryTableEditorGridView.DataSource = tableBinding;
    }

This works perfectly fine.

The problem is this: If a user starts editing / adding a row, if they enter into edit mode in a cell, erase the contents, then tab or click out of it, an unhandled exception will be thrown (as most of the db columns do not allow nulls). This is prefectly normal and acceptable, but I would like to be able to catch and handle these exceptions, and I don’t know where / how to catch them.

I have tried using several different event handlers on the datagridview, such as .DataError, .RowValidating, and a few others that I don’t remember now… But I can’t seem to catch the pesky exceptions.

Any suggestions are greatly appreciated!

EDIT: I should add that the exception is typically something like this: “ConstraintException was unhandled by user code. This property cannot be set to a null value”.

  • 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-16T01:10:12+00:00Added an answer on June 16, 2026 at 1:10 am

    Try the CellEditEnding or CurrentCellChanged events.

    Edit: Or you can also have the setter of your property handle the null value..

    public int Number
    {
      get { return _number; }
      set
      {  
          if (null == value)
          {
              // handle here
          }
      }
    }
    

    Edit: See Entity Framework error when submitting empty fields for more info.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DataGridView which is filling from Table in SQL Server Database. One
I have a Form with a DataGridView which DataSource is a BindingSource to a
I have a databound DataGridView in a Win Forms app which the user may
I have a databound DataGridView. The data source is a typed data set with
I have a DataGridView bound to a bindingsource which is bound to a List<T>
I have a DataGridView with a DataGridViewCheckBoxColumn column, which is databound to a list.
I have a DataGridView which I have bound to a single ODBC database table
i have a datagridview which is binded on a table and i cannot display
I have a datagridview which is editable. I have a textbox below it. I
I have a datagridview which we will call dataGridViewExample. My object (the uncommon datatypes

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.