I am trying to connect entity to an existing database, but am having a hard time figuring out why I am getting the following error:
The model backing the 'RPSContext' context has changed since the database was created. Consider using Code First Migrations to update the database (http://go.microsoft.com/fwlink/?LinkId=238269).
As I mentioned, I am connecting to an existing database. So I don't need entity to modify structure. I'd just like to be able to select/insert/update/etc.
Design:

Model:
public class ProductAttributePriceAdjustment
{
[Key]
public int AdjustmentId { get; set; }
public int StoreProductId { get; set; }
public int StoreId { get; set; }
public string ProductId { get; set; }
public int ProductSizeId { get; set; }
public decimal Adjustment { get; set; }
public int PointsAdjustment { get; set; }
public int ProductColorID { get; set; }
}
Context
public class RPSContext : DbContext
{
public RPSContext() : base("ApplicationConnection")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<ProductAttributePriceAdjustment>().ToTable("ProductAttributePriceAdjustment");
}
public DbSet<ProductAttributePriceAdjustment> PriceAdjustments { get; set; }
}

ints that are notnullable. - gunr2171