LinqDataSourceView.ValidateInsertSupported(IDictionary) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Validates that the conditions exist to perform an insert operation.
protected:
virtual void ValidateInsertSupported(System::Collections::IDictionary ^ values);
protected virtual void ValidateInsertSupported (System.Collections.IDictionary values);
abstract member ValidateInsertSupported : System.Collections.IDictionary -> unit
override this.ValidateInsertSupported : System.Collections.IDictionary -> unit
Protected Overridable Sub ValidateInsertSupported (values As IDictionary)
Parameters
- values
- IDictionary
A dictionary that contains row values to insert.
Exceptions
The GroupBy or SelectNew property contains a value or the values
parameter does not contain any items.
CanInsert is false
.
Remarks
You cannot insert data when the GroupBy property or the SelectNew property contains a value other than null
. For more information, see the LinqDataSource.EnableInsert property.