Class TypeRecord

Assembly: redb.Export.dll

Represents a row from the _types table (REDB type definition).

public sealed class TypeRecord : ExportRecord

Inheritance

ObjectExportRecordTypeRecord

Properties

DbType

Database-specific type name (e.g. "bigint").

public string? DbType { get; init; }

DotnetType

.NET CLR type name (e.g. "System.Int64").

public string? DotnetType { get; init; }

Id

Primary key.

public long Id { get; init; }

Name

Type name.

public string Name { get; init; }