namespace PartSource.Data.Models { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; public partial class PartPrice { [Key] public string SKU { get; set; } public Nullable Compare_Price { get; set; } public Nullable Your_Price { get; set; } public decimal? Core_Price { get; set; } public string Active { get; set; } // public virtual PartData PartData { get; set; } } }