Generating CRUD page wrong code

Hi
I have a project where I have problem generating CRUD for one specific table.

The table, persons, has a FK constraint to another table Clubs. I'm using SQL Server. In this project I have only Persons and Clubs to eliminate as much as possible. Reading the error gives a hint and it seams like I'm missing some tags, I did a manual correction and it solved some problems, the i added the dropdowndatagrid but it looks like that the model of Clubs is wrong.

Building...
C:\Users\VictorWallenberg\OneDrive - SecTrade Finanskonsult AB\Dokument\Projects\Radzen Blazor Studio\SailIT\Components\Pages\Persons.razor(80,18): error RZ1034: Found a malformed 'RadzenRow' tag helper. Tag helpers must have a start and end tag or be self closing. [C:\Users\VictorWallenberg\OneDrive - SecTrade Finanskonsult AB\Dokument\Projects\Radzen Blazor Studio\SailIT\SailtIT.csproj]
C:\Users\VictorWallenberg\OneDrive - SecTrade Finanskonsult AB\Dokument\Projects\Radzen Blazor Studio\SailIT\Components\Pages\Persons.razor(84,22): error RZ1034: Found a malformed 'RadzenColumn' tag helper. Tag helpers must have a start and end tag or be self closing. [C:\Users\VictorWallenberg\OneDrive - SecTrade Finanskonsult AB\Dokument\Projects\Radzen Blazor Studio\SailIT\SailtIT.csproj]

CREATE TABLE [dbo].[Clubs](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Code] nvarchar NOT NULL,
[ClubName] nvarchar NOT NULL,
CONSTRAINT [PK_Clubs] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO

CREATE TABLE [dbo].[Persons](
[Id] [int] IDENTITY(1,1) NOT NULL,
[FullName] nvarchar NULL,
[FirstName] nvarchar NOT NULL,
[LastName] nvarchar NOT NULL,
[StndCluId] [int] NOT NULL,
CONSTRAINT [PK_Persons1] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO

ALTER TABLE [dbo].[Persons] WITH CHECK ADD CONSTRAINT [FK_Persons_StndCluId1] FOREIGN KEY([StndCluId])
REFERENCES [dbo].[Clubs] ([Id])
GO

ALTER TABLE [dbo].[Persons] CHECK CONSTRAINT [FK_Persons_StndCluId1]
GO

I've used your schema to create an app using latest version of RBS and everything worked correctly.

You can find the app here: