codec property

MssqlTypeCodec<Object?> codec
latefinal

The codec for this column, built once and shared by every use of it.

Reading a row, comparing in a predicate, inserting, updating and grouping children by a foreign key all go through the same object, so they cannot disagree about what the column is.

Implementation

late final MssqlTypeCodec<Object?> codec = MssqlTypeCodecs.forColumn(
  columnType,
);