Ambiguous Reference

Hi,
I added your components to my project today and am getting the following error "MudValidationSummary.razor(6, 50): [CS0104] 'Variant' is an ambiguous reference between 'MudBlazor.Variant' and 'Radzen.Variant'"

Is there an easy fix for this as it now gives 49 errors in 12 of my files (in one project), I have about 15 projects in this solution.

Regards
Peter

You need proper using in the pages where you want to use this type. For example:

@using Radzen

Otherwise possible approach will be to use the type with full name. For example:

Radzen.Variant.Flat

Enchev,
Thanks for the quick reply, I'll spend some time updating the MudBlazor pages to fix

Thanks
Peter.

enchev,
Adding the @Using statement doesn't work, I had to add the full qualified name to the property to resolve the issue.

Regards
Peter.