klyn.data.ProviderConfiguration.mappedTypes
property
public readonly property mappedTypes as IList<Type>
Description

Entity types explicitly contributed by this provider configuration.

The factory combines this immutable list with explicit mapping descriptors and reflected @Entity declarations. This guarantees that its entity model is complete before the first repository is requested.

Returns

Entity types configured by the provider.

Example
for entityType in configuration.mappedTypes:
print(entityType.fullName)