Hello,

after update SQL server I got following error when copying a product:
The conversion of a datetime2 data type to a datetime data type resulted in an out-of-range value

I fixed this by adding "UpdatedOnUtc = DateTime.UtcNow," in the command
  var productCopy = new Product{........
in method CopyProduct(..) in CopyProductService

Dont know why this behaviour suddenly changed, but only explanation I have is updating my sql Server newly.

So I recommend checking this out and adding this line in a bugfix. Neither does it change any behaviour since the command .UpdateProduct(productCopy) is called some lines later.

Regards
Jens