I Have a simple way to do a list and show properties of it.

	List<string> razones = new List<string>();
	foreach (var item in _context.Reason)
	{
		razones.Add (item.Description);
	}
	System.Diagnostics.Debug.WriteLine(razones.Count);