Example #1
0
 /// <summary>Updates the specified EntityModel.EntityClasses.SpecificItemEntity entity with the values stored in the dto object specified</summary>
 /// <param name="toUpdate">the entity instance to update.</param>
 /// <param name="dto">The dto object containing the source values.</param>
 /// <remarks>The PK field of toUpdate is set only if it's not marked as readonly.</remarks>
 public static void UpdateFromSpecificItemDto(this EntityModel.EntityClasses.SpecificItemEntity toUpdate, Dto.DtoClasses.SpecificItemDto dto)
 {
     if ((toUpdate == null) || (dto == null))
     {
         return;
     }
     toUpdate.CollectionId = dto.CollectionId;
     toUpdate.Description  = dto.Description;
     toUpdate.Id           = dto.Id;
     toUpdate.Note         = dto.Note;
     toUpdate.OldItemId    = dto.OldItemId;
 }
Example #2
0
 /// <summary>Extension method which produces a projection to Dto.DtoClasses.SpecificItemDto which instances are projected from the
 /// EntityModel.EntityClasses.SpecificItemEntity entity instance specified, the root entity of the derived element returned by this method.</summary>
 /// <param name="entity">The entity to project from.</param>
 /// <returns>EntityModel.EntityClasses.SpecificItemEntity instance created from the specified entity instance</returns>
 public static Dto.DtoClasses.SpecificItemDto ProjectToSpecificItemDto(this EntityModel.EntityClasses.SpecificItemEntity entity)
 {
     return(_compiledProjector(entity));
 }