qsdfplkj
qsdfplkj
Don't call EnsureAutoHistory before saving?
I was thinking is there any performance difference between `context.Customers.TemporalAsOf(utcPointInTime).ToList()` vs. `context.Customers.TemporalAll().Where(x => EF.Property(x, "PeriodStart")
I did some testing. The query plans look the same. I did some timing with SET STATISTICS TIME ON but it's not really conclusive. One thing I did notice is...
I have 2 migrations one to CreateTables and AddTemporalTables. Update-Database works but Update-Database CreateTables (in order to revert the AddTemporalTables) does not work. (There are no errors in the console?)
Any updates on this? I've a similar issue. Locally it works locally but when deployed to azure the tablestate seems to be null. (Maybe it has to do with the...
Wouldn't receiving them using the sequence number have the same effect as a purge.
I've kind of the same question. I've 2 applications both with their own instrumentation key but I would like to view the telemetry traces as if there was only 1...
Please remove the stale label.
Why is the default for string the empty string? Why deviate from the defaults the clr uses? Maybe in a nullable context it makes sense to use "" for string...
It deviates from the Clr default. My code checks for null. It's like saying the default int == 1 because of the same reasoning (working without throwing errors). Besides why...