Datagrid displaying IEnumerable

Is it possible to enable the use of datagrid to display IEnumerable elements in a similar way as shown on the page

But without using Entityframework?

I would like to display the items for the order in a similar way as on the attached print screen

Hi @Norbert,

Yes you can. The linked example calls ToList() so entity framework isn't really used much.

You don't need EF to use our DataGrid component.

Yea, thanks you are right :slight_smile:
I made a mistake because I thought that ProductId and ProductName mapping was done automagically :).

Finally, it turned out that I had to fix the CellRender methods, which are hardcoded in the presented demo.