Дайте псевдоним в модели .NET
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Display(Name = "Category Name")]
public string CatName { get; set; }
Weary Sloth