RadzenDatePicker with protobuf

is there a possibility to bind radzenDatepicker with Google.Protobuf.WellKnownTypes.TimeStamp.

My model is comming from communication with a GRPC server and the date in proto buffers must have Google.Protobuf.WellKnownTypes.TimeStamp type .
So i came with :
MessageResquest{
Google.Protobuf.WellKnownTypes.Timestamp DateDebut = 1 ;
Google.Protobuf.WellKnownTypes.Timestamp DateFin = 2 ;
}
But when i want to bind the value of course DatePicker doesn't know this type.
I don't know if there is a possibility of adding a value converter or something that will do the job .

Thank you .

Hi @olivier,

The RadzenDatePicker can only be bound to DateTime and DateTimeOffset types. Perhaps you can use an intermediate property/model and map from/to the protobuf types.

Hi @korchev

Thank you for your reply, that's what i've done.

Maybe one day there'll be, like in wpf, the possibility to add a dataconverter ?

Best Regards