我有一个查询
row.GetChildRows("EventCategoryRelation")
.Where(categoryRow => categoryRow["event_id"].ToString() == eventObject.EventId.ToString())
.Select(x => Int32.Parse(x["category_id"].ToString()))
此查询返回一个 IEnumerable。我期待一个'int'
帮我修改我的 LINQ 查询