Hi
I installed version 3.1.0 and started to get build errors, in particular:
CS0266 Cannot implicitly convert type 'object' to 'WarrantModels.Warrant'. An explicit conversion exists (are you missing a cast?)
If I revert to version 3.0.10 all is Ok
On investigation the builder emits different g.cs code under each version for the same line of code:
ERROR g.cs line radzen 3.1.0 __builder.AddAttribute(260, "ValueChanged", new System.Action<System.Object>(__value => CurrentSelectedRow = __value));
OK g.cs file rsdzen 3.0.10 __builder.AddAttribute(260, "ValueChanged", new System.Action<WarrantModels.Warrant>(__value => CurrentSelectedRow = __value));
It seems to be centered around the datagrid option:
@bind-Value="CurrentSelectedRow"
I am unsure of where to cast in these circumstances
Any pointers would be appreciated, (p.s.I'm not using the Radzen IDE but embedding the components in razor pages.)
Kind Regards
Sean Francis