Syncfusion Grid: Make Field Required

Required Field Add the following to the GridColumn… ValidationRules="@(new ValidationRules{ Required=true })" Note: Make sure the required field is in the form or you will not be able to proceed to Save.

An error occurred while executing batch. Error message is: Exception of type ‘System.OutOfMemoryException’ was thrown.

Symptoms When you use SSMS to run an SQL query that returns a large amount of data, you receive an error message that resembles the following: An error occurred while executing batch. Error message is: Exception of type ‘System.OutOfMemoryException’ was thrown Cause This issue occurs because SSMS has insufficient memory to allocate for large results.... » read more

Convert Foreign Key to Check Constraint

Reason for converting a foreign key to a check constraint After partitional a table where the primary key was modified. If an additional column was added to the primary key, all the foreign key reference will now error out. You can either drop the foreign key or create a CHECK constraint insteac. If the table... » read more