Table of Contents

Struct MigrationFailure

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

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

int

Exception

The exception thrown by the migration function.

public Exception Exception { get; init; }

Property Value

Exception

OldDataHex

Hex dump of the old component bytes (for diagnostic inspection).

public string OldDataHex { get; init; }

Property Value

string