Schema specified is not valid. Errors: The relationship 'Product_CreatedByUser' was not loaded because the type 'User' is not available
问题 I have following code first models and I try to initialized database it giving me error mention below. One user can have multiple products so there is one to many relationship between user and product. Schema specified is not valid. Errors: The relationship 'Models.Product_CreatedByUser' was not loaded because the type 'User' is not available. I am using code first approach, can any one help me with this. User: public class User { public long UserId { get; set; } public string FirstName { get