i have two already existings tables (no foreignkey):...Customer (Id, Name, .....)
Projects (Id, CustomerId, name)...And in my asp.net core application i have two model:...public class Customer {
public int Id { get; set; };
public String Name { get;...