Class RedbType
REDB type entity with direct data storage.
Maps to _types table in PostgreSQL.
public class RedbType : IRedbType
Inheritance
Implements
Properties
DbType
Database type name (e.g., "String", "Long", "Boolean").
[JsonPropertyName("db_type")]
public string? DbType { get; set; }
Type1
.NET type full name (e.g., "System.String", "System.Int64").
[JsonPropertyName("type")]
public string? Type1 { get; set; }
Methods
Constructors
RedbType()
Default constructor for deserialization and mapping.
RedbType(string)
Constructor with name.