RadzenGridControl display empty

I've recently updated to the latest lib version and switched from RadzenGrid to RadzenDataGrid. The problem is that in the older datagrid everything works fine and new one just won't display anything. Tried many different thing but no luck. An advice would be helpful.

@inject ThunderedDbContext dbContext

                    <RadzenDataGrid TItem="ThdMoonTableEntry"
                                    Count="@_countMoons2" AllowPaging="true" PageSize="5"
                                    LoadData="@LoadMoonsGrid2" Data="@_filteredMoonList2"
                                    AllowFiltering="true" AllowSorting="true"
                                    Style="height: 240px;" 
                                    FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
                                    LogicalFilterOperator="LogicalFilterOperator.And">
                        <Columns>
                            <RadzenGridColumn TItem="ThdMoonTableEntry" Property="RegionName" Title="@LM.Get("mtColumnRegionName")"/>
                        </Columns>
                    </RadzenDataGrid>

    private IEnumerable<ThdMoonTableEntry> _filteredMoonList2;
    private int _countMoons2;

    private void LoadMoonsGrid2(LoadDataArgs arg)
    {
        _filteredMoonList2 = dbContext.MoonTable.AsQueryable().ToList();
        _countMoons2 = dbContext.MoonTable.Count();
    }

The columns type for the new DataGrid is RadzenDataGridColumn

Oh, thanks a lot. Wonder how I missed that :slight_smile: