As an example consider a ListView which will bind to a poco called Employee which has properties Name and EmployedSince. The ListView will display the name of the employee as well as how long the user has been employed in years.
public class Employee { public string Name { get; set; } public DateTime EmployedSince { get; set; } }