this code in EF Core 5 work correct.
/// <summary>
/// Extension Data
/// </summary>
[Comment("Extension Data")]
[JsonExtensionData]
[Column(TypeName = "jsonb")]
public Dictionary<string, object> ExtensionData { get; set; }
and in ef core 6.0.throw a error
The navigation 'Attachment.ExtensionData' must be configured in 'OnModelCreating' with an explicit name for the target shared-type entity type, or excluded by calling 'EntityTypeBuilder.Ignore'.
this code in EF Core 5 work correct.
and in ef core 6.0.throw a error