IAutoMapper(TModel, TEntity).ToModelEnumerable Method

Template MVC

IAutoMapperTModel, TEntityToModelEnumerable Method

Convert an IEnumerable of entities to an IEnumerable of models

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

Parameters

enumEntity
Type: System.Collections.GenericIEnumerableTEntity

[Missing <param name="enumEntity"/> documentation for "M:Template.Service.Core.Interface.IAutoMapper`2.ToModelEnumerable(System.Collections.Generic.IEnumerable{`1})"]

Return Value

Type: IEnumerableTModel
The IEnumerable of models
See Also