This question is locked. New answers and comments are not allowed.
Hi,
I have a Grid I'm binding to an IENumerable of <A> which is described as
class A
{
string Name;
B Assessment;
}
class B
{
int Score;
}
And the Grid columns are
bound(i => i.Name);
bound(i => i.Assessment.Score);
If I try and sort on the Assessment.Score I get an exception thrown (Invalid property or field - 'Assessment' for type: A)
Is there a way around this?
I have a Grid I'm binding to an IENumerable of <A> which is described as
class A
{
string Name;
B Assessment;
}
class B
{
int Score;
}
And the Grid columns are
bound(i => i.Name);
bound(i => i.Assessment.Score);
If I try and sort on the Assessment.Score I get an exception thrown (Invalid property or field - 'Assessment' for type: A)
Is there a way around this?