public IEnumerable <GetAllZoneProvince> GetAllZone() { using (var db = new KoontabiDBEntities()) { var result = from zone in db.GetAllZoneProvince() select zone; return(result.ToList()); } }