public static Comment ToOrmComment(this DalComment comment) { return(new Comment() { Id = comment.Id, Author = comment.Author.ToOrmAuthor(), PhotoId = comment.PhotoId, Posted = comment.Posted, Text = comment.Text }); }
public void Insert(DalComment entity) { _context.Comments.Add(Mapper.CreateMap().Map <Comment>(entity)); _context.SaveChanges(); }