ObjectParameter Constructor (String^, Object^)
Initializes a new instance of the ObjectParameter class with the specified name and value.
Assembly: System.Data.Entity (in System.Data.Entity.dll)
Parameters
- name
-
Type:
System::String^
The parameter name. This name should not include the "@" parameter marker that is used in Entity SQL statements, only the actual name. The first character of the expression must be a letter. Any successive characters in the expression must be either letters, numbers, or an underscore (_) character.
- value
-
Type:
System::Object^
The initial value (and inherently, the type) of the parameter.
| Exception | Condition |
|---|---|
| ArgumentNullException | If the value of either argument is null. |
| ArgumentOutOfRangeException | If the value of the name argument is not valid. Parameter names must start with a letter and can only contain letters, numbers, and underscores. |
This constructor creates a parameter from the specified name and value. The type of the parameter is inferred from the value.
When added to the ObjectParameterCollection, the parameter name cannot be changed. The parameter value can be changed through the Value property. After the query has been compiled, the value cannot be changed. For more information, see Query Builder Methods.
The example in this topic is based on the AdventureWorks Sales Model. The example adds new parameters to the collection. It iterates through the ObjectParameterCollection and displays the name, the type and the value of each parameter in the collection.
Available since 3.5