Maybe I can reverse-engineer your question. Let's say we have,
TestDataset =
Dataset[
{<|"hcont" -> DateObject[{2022, 10, 14}], "hdeb" -> DateObject[{2022, 10, 13}]|>,
<|"hcont" -> DateObject[{2022, 10, 12}], "hdeb" -> DateObject[{2022, 10, 11}]|>}]
I can apply a function to each of the rows, maybe something like this,
TestDataset[All, <|"hcont2" -> #hcont, "hdeb2" -> #hdeb, "diff" -> (#hcont - #hdeb)|> &]

Is that the kind of thing you're trying to do?