- 
                Notifications
    You must be signed in to change notification settings 
- Fork 35
M_CodeJam_Mapping_MappingSchema_SetConvertExpression__2
        andrewvk edited this page Jul 1, 2016 
        ·
        5 revisions
      
    Adds an expression that converts a value of type fromType to toType.
Namespace: CodeJam.Mapping
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)
C#
public void SetConvertExpression<TFrom, TTo>(
	Expression<Func<TFrom, TTo>> expr,
	bool addNullCheck = true
)VB
Public Sub SetConvertExpression(Of TFrom, TTo) ( 
	expr As Expression(Of Func(Of TFrom, TTo)),
	Optional addNullCheck As Boolean = true
)F#
member SetConvertExpression : 
        expr : Expression<Func<'TFrom, 'TTo>> * 
        ?addNullCheck : bool 
(* Defaults:
        let _addNullCheck = defaultArg addNullCheck true
*)
-> unit 
- expr
- Type: System.Linq.Expressions.Expression(Func(TFrom, TTo))
 Expression to set.
- addNullCheck (Optional)
- Type: System.Boolean
 If true, adds an expression to check null value.
- TFrom
- Type to convert from.
- TTo
- Type to convert to.
MappingSchema Class
SetConvertExpression Overload
CodeJam.Mapping Namespace