Hi!
I have dataset with one table and I used it to fill RadGridView with columns.
One of the columns is foreign key (SQL Server type bigint) and autogenerated as GridViewDecimalColumn.
I do not want to make master-detail view, but I'd like to show values from another table based on this foreign key.
For example,
Table 1
id bigint
code_id_form_table2 bigint
Table 2
id bigint
name nvarchar(50)
So, I'd like to show name instead of code_id_from_table2 in the RadGridView. I know how to do it with built-in DataGridView, but how can I achieve the same result with Telerik component?