Use NotMapped Attribute to exclude Property from being in Entity November 27, 2022 public class EntityName { [NotMapped] private string PropertyName { get; } } References https://stackoverflow.com/questions/1987836/creating-a-non-mapped-property-in-an-entity-entity-framework Related