Well, in my application I have the Context class that owns the Shopping DbSet and the Products DbSet. It turns out that in my DB table, Purchases has an FK that takes the Product ID in the FK_ID_PROD column.
Question 1: How will the mapping of this column in Entity?
Question2: Should I create a list of type Products or just a list of Integers and store product IDs in this "Shopping" class?
Thank you!