Entity framework creating a non existent column in the query
问题 This has been puzzling me for quite some time but I keep getting an invalid identifier error when my entity framework tries to execute an oracle query. The classes in question are the following: public class Projectship : ModelTrackingBase { [Column("PROJECTID")] public long ProjectId { get; set; } [Column("VISITID")] public long VisitId { get; set; } public virtual Bpid Bpid { get; set; } //new public virtual Visit Visit { get; set; } } and public class Bpid : EntityIdBase { [Column(