I have some class called myDB that inherits from DbContext the class contains the following member :
public DbSet<Zoo> mAllZoos { get; set; }
the Zoo class looks like this :
public class Zoo
{
public string Name { get; set; }
public IEnumerable<Animal> Animals { get; set; }
public int ZooSize { get; set; }
public int ID { get; set; }
}
there is an "Animal" class which is not relevant at all, but it does contain "ID".
when i ask him to create a Database from my classes he creates a Table named Animal for my animals, and a table Zoo for my zoos..
In the zoo table, there are only "Size" and "Name" fields And in the animal table there are ID and other properties but no reference to the Zoo.
The bottom line is that there is no reference from the animals to the zoos , so i can't save which animal is in which zoo ..
What did i do wrong ? And how do i fix it.
Thanks in advance