Struct MigrationFailure
Records a single entity that failed during migration, including its primary key, a hex dump of the old data, and the exception.
public readonly struct MigrationFailure
- Inherited Members
Properties
ChunkId
ChunkId (logical entity identifier) of the failed entity.
public int ChunkId { get; init; }
Property Value
Exception
The exception thrown by the migration function.
public Exception Exception { get; init; }
Property Value
OldDataHex
Hex dump of the old component bytes (for diagnostic inspection).
public string OldDataHex { get; init; }