Hi, how can I display an age column based on birthdate. I have this code that displays no data in the age column
<GridColumn Field="LasName Title="Lase name" />@Age = DateTime.Now.Year - Person.BirthDateYear
<GridColumn Field="Age" Title="Age" />
Age is defined in the @Code section:
public int Age;
Thanks