Hello,
I have a radzen element that is pulling in a C# model from the domain layer of the app. I'm trying to consolidate my using statements to the partial .cs file.
On the razor page we have the using statement:
@using App.Domain.Models;
This is allowing the Radzen component to see the models for the TItem = RecordModel
.
When I move the using statement into the .cs file, the razor page breaks.