Skip to content

v8.0.46

Choose a tag to compare

@VahidFarahmandian VahidFarahmandian released this 22 Aug 20:18
· 16 commits to main since this release

Add support for nested generic statements like:

        builder.Property(x => x.OtherAttibutes)
        .HasColumnType("nvarchar(max)")
        .HasConversion(
            v => JsonSerializer.Serialize(v, new JsonSerializerOptions()),
            v => JsonSerializer.Deserialize<ICollection<string>>(v, new JsonSerializerOptions()) ?? new List<string>()
        );

in ReadModelMappingConfigurationGenerator