simpleidserver / EFCore.Cassandra

Entity Framework Core provider for Cassandra
Apache License 2.0
35 stars 16 forks source link

Q: Is UDT supported? #9

Closed pluskal closed 3 years ago

pluskal commented 4 years ago

Is UDT supported, or do you plan to add support for it in the future? I looked at the source but was unable to find any modelBuilder extensions that would create UDTs in Cassandra.

simpleidserver commented 4 years ago

Hi,

UDT is not yet supported. This features can be included for the next release

simpleidserver commented 3 years ago

The feature has been implemented in the releaase 2.0.2. You can find an example here : https://github.com/simpleidserver/EFCore.Cassandra/blob/master/samples/EFCore.Cassandra.Samples/Program.cs

The "ApplicantAddress" is a UserDefinedType.

pluskal commented 3 years ago

Thanks! Works very well!