In EF 6, I can add a NotMapped attribute to the property, then it will not be mapped to a column. How can I do this in EF 7?
NotMapped
We haven't implemented data annotations yet. (See #107) You should be able to do it using the Fluent API.
modelBuilder.Entity().Ignore(e => e.NotMappedProperty);