IAutoMapper(TModel, TEntity).ToEntityFunction(TResult) Method

Template MVC

IAutoMapperTModel, TEntityToEntityFunctionTResult Method

Convert a function of a model to a function of a TEntity, be careful to make an function with entities properties

Namespace:  Template.Service.Core.Interface
Assembly:  Template.Service (in Template.Service.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
Func<TEntity, TResult> ToEntityFunction<TResult>(
	Func<TModel, TResult> predicate
)

Parameters

predicate
Type: SystemFuncTModel, TResult

[Missing <param name="predicate"/> documentation for "M:Template.Service.Core.Interface.IAutoMapper`2.ToEntityFunction``1(System.Func{`0,``0})"]

Type Parameters

TResult

[Missing <typeparam name="TResult"/> documentation for "M:Template.Service.Core.Interface.IAutoMapper`2.ToEntityFunction``1(System.Func{`0,``0})"]

Return Value

Type: FuncTEntity, TResult

[Missing <returns> documentation for "M:Template.Service.Core.Interface.IAutoMapper`2.ToEntityFunction``1(System.Func{`0,``0})"]

See Also