Hi,
I'm implementing my own incremental dataflow and I came across an issue with the LastModifiedDateTime value. The exact same value, from the exact same record gained 0.087 seconds during it’s round trip to Dataverse. It’s not a big difference but it’s enough to return FALSE when comparing it to itself.
I fixed my problem with the workaround below but I’m worried I might eventually miss or double-count some records.
Replace : [DateHeureDerniereMaj] = [getdate]
With : Number.Abs(Duration.Seconds([DateHeureDerniereMaj] - [getdate])) > 0.01
I still believe this is a BUG ! ... or is it something I'm doing wrong??
From the Dataflow editor :

From the Dataverse solution editor :

Thank you
--mo