DbPropertyExpression.Implicit Operator
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.
Creates a new key/value pair based on this property expression.
public:
static operator System::Collections::Generic::KeyValuePair<System::String ^, System::Data::Common::CommandTrees::DbExpression ^>(System::Data::Common::CommandTrees::DbPropertyExpression ^ value);
public static implicit operator System.Collections.Generic.KeyValuePair<string,System.Data.Common.CommandTrees.DbExpression> (System.Data.Common.CommandTrees.DbPropertyExpression value);
static member op_Implicit : System.Data.Common.CommandTrees.DbPropertyExpression -> System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>
Public Shared Widening Operator CType (value As DbPropertyExpression) As KeyValuePair(Of String, DbExpression)
Parameters
- value
- DbPropertyExpression
This property expression.
Returns
A new key/value pair with the key and value derived from the DbPropertyExpression.
Remarks
In the returned key/value pair, the key is a string value that is the name of the referenced property, and the DbExpression value is the property expression itself.
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.