Hi all....
I need help in Silverlight dataGrid Control...
I have to fire the following queries and load data in a grid view in Silverlight:
1) var qry = from t in context.Employees select new {t.EName, t.ESalary, t.DOJ, t.DOB };
2) var qry = from t in context.Employees select t ;
---
Difference - In first query, only 4 Columns and in second query, all the columns are there.
Please help me out...
The datagrid is not loaded.......
I also have attached my code for reference .......
Thanks all in advance !!
Loading
Dinesh BhojePosted Jan 11, 2013, 5:12 AM
In XAML specify columns to display OR simply set AutoGenerateColumns= true.
Will work it..
Riddhi ValechaPosted Jan 21, 2013, 12:30 AM
I did not specify columns in XAML File...
Instead.... I did AutoGenerateColumns=true and ForeGroundColour = Black.
This worked....
Hope this helps others also...