GenericService(TModel, TEntity) Methods

Template MVC

GenericServiceTModel, TEntity Methods

The GenericServiceTModel, TEntity generic type exposes the following members.

Methods
  NameDescription
Public methodAdd
Add an entity based on the passed model and insert it on database
Public methodAddIEnumetable
Add an IEnumerable of entities based on the passed models IEnumerable amd insert them on database
Public methodDelete
Add an entity based on the passed model and delete it on database
Public methodDeleteBy
Deletes any match with the given predicate
Public methodEdit
Add an entity based on the passed model and delete it on database
Public methodFindBy
Retuns an IEnumerable of models based on the expresion, retreives entities from the database and convert them to models
Public methodGet
Get an unique model based on the expresion, retreives the entity and convert it to model
Public methodGetAll
Get all the elements of the database, retreives entities from the database and convert them to models
Public methodSelectWhereTResult
This function allows to select the specific properties and filter by where clause on database, not on memory, in that way it improves the performace
Public methodToEntity
Converts a model to an entity
Public methodToEntityEnumerable
Converts an IEnumerable of Models to an IEnumerable of entities
Public methodToEntityExpression
Convert an expression of a model to an expression to an Entity, be careful to make an expression of with entities properties
Public methodToEntityFunctionTResult
Convert a function of a model to a function of a TEntity, be careful to make an function with entities properties
Public methodToModel
Converts an entity to a model
Public methodToModelEnumerable
Convert
Top
See Also