IAutoMapper(TModel, TEntity).ToEntityEnumerable Method

Template MVC

IAutoMapperTModel, TEntityToEntityEnumerable Method

Converts an IEnumerable of Models to an IEnumerable of entities

Namespace:  Template.Service.Core.Interface
Assembly:  Template.Service (in Template.Service.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
IEnumerable<TEntity> ToEntityEnumerable(
	IEnumerable<TModel> enumModel
)

Parameters

enumModel
Type: System.Collections.GenericIEnumerableTModel
The IEnumerable of Models to be converted

Return Value

Type: IEnumerableTEntity
The IEnumerable of entities
See Also