I am working on database table which has a column name with a space in it, for example \"Level Description\".
I cannot change the column name. Now I have an Entity F
Use the ColumnAttribute to set the name:
[Column(Name="Level Description")] public string LevelDescription { get; set; }