Hi,
I have a class with more than 60 fields. Our quality gate doesn't allow more than 20 fields. So I factorized my code and have some class with one to one relations.
Is there something that I can use to have only one grid with all my fields?
I tried something like this, and got an error data.AppFacts is undefined :
@(Html.Kendo().Grid<App>() .Name("grid") .Columns(columns => { columns.Bound(a => a.Name); columns.Bound(a => a.AppData.DatabaseInstances); columns.Bound(a => a.AppFacts.ApplicationType); } )I tried with columns.ForeignKey, but I don't think I have understand how it work.
I'm a new developer, so it might be obvious but I tried.