I am working with a something.razor file and a code behind Something.razor.cs file. My partial class inherits from SomethingBase which itself inherits from ComponentBase.
This however gives errors
CS0115 .buildrendertree(rendertreebuilder)': no suitable method found to override in partial class CS0263 partial declarations of must not specify different base classes.
However if Something inherits directly from ComponentBase there is no issue.
First question please be gentle. I'll update with code and more detail in the morning if needed.