public Class Animal { public int Id{get;set;} public string Name {get;set;} public ICollection<int> OwnerIds{ get; set; } }
The animal class contains an int (ownerIds) list.
Entity structure does not create a table for OwnerIds, how can I match this?
source share