New to Telerik UI for Blazor? Download free 30-day trial

Two Components with the Same Name

Environment

Product UI for Blazor

Description

When creating components, make sure that you use unique names for them and their file name. If the class name matches another component, you may get strange results, for example:

  • You may get the Intellisense and features of one instead of the other, or a mix of both.
  • Compilation error.
  • Cryptic errors from things and Parameters that should work, such as:
    • for a Telerik grid: error CS0246: The type or namespace name 'TItem' could not be found (are you missing a using directive or an assembly reference?)
    • for a Telerik button Unhandled exception rendering component: Object of type 'TestProject.Pages.TelerikButton' does not have a property matching the name 'ChildContent'.
    • Multiple components use the tag 'TelerikGrid'

These last error messages can be observed if you have a component called TelerikGrid.razor in your app, and you attempt to use the <TelerikGrid> component provided by Telerik UI for Blazor in the same app (respectively, a TelerikButton.razor and <TelerikButton> components).

You will get the intellisense from the Telerik grid, you will be able to define columns and events, but setting its Data property will throw this build error because the framework will get confused with your own TelerikGrid.razor component.

This may be fixed in .NET Core 3.1 Preview 1 after our report.

The solution is to ensure that the component names in the project are unique, both across components in different folders of your own making, and with components from third party libraries you may be using.

In this article