/// <summary>Updates the specified SD.HnD.DALAdapter.EntityClasses.MessageEntity 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 UpdateFromMessageInThread(this SD.HnD.DALAdapter.EntityClasses.MessageEntity toUpdate, SD.HnD.DTOs.DtoClasses.MessageInThreadDto dto)
 {
     if ((toUpdate == null) || (dto == null))
     {
         return;
     }
     toUpdate.MessageTextAsHTML = dto.MessageTextAsHTML;
     toUpdate.PostedFromIP      = dto.PostedFromIP;
     toUpdate.PostingDate       = dto.PostingDate;
     toUpdate.ThreadID          = dto.ThreadID;
 }
 /// <summary>Extension method which produces a projection to SD.HnD.DTOs.DtoClasses.MessageInThreadDto which instances are projected from the
 /// SD.HnD.DALAdapter.EntityClasses.MessageEntity 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>SD.HnD.DALAdapter.EntityClasses.MessageEntity instance created from the specified entity instance</returns>
 public static SD.HnD.DTOs.DtoClasses.MessageInThreadDto ProjectToMessageInThreadDto(this SD.HnD.DALAdapter.EntityClasses.MessageEntity entity)
 {
     return(_compiledProjector(entity));
 }