I\'m getting to grips with EF code first. My domain model design doesn\'t seem to support the auto \'populating\' child of objects when I call them in code.
Mod
The reason why you don't have the Coordinates
is because it's not included in the query. There are multiple ways to include it in the result:
_context.Cars.Include(car => car.Coordinates).ToList();
--- it'll fetch cars with coordinates in one queryCoordinates
for all the cars, you can do the following: make the Coordinates
property virtual, then when you'll get cars, you can get Coordinates
for only subset of them if you need and the separate calls will be made to the database for each property "get" access. You'll also see in the debugger that EF created dynamic classes for you, so that's why you had to make it virtual
You have a couple of choices here:
To eagerly load related entities by telling EF to Include() them. For example you can load Cars
including their Coordinates
and Clients
like this:
public List<Car> Get()
{
var cars = _context.Cars
.Include(car => car.Coordinates)
.Include(car => car.Client)
.ToList();
return cars;
}
To lazy load related entities by declaring the navigation properties virtual
thus telling EF to load them upon first access. Make sure you don't have disabled lazy loading for your context like this:
this.Configuration.LazyLoadingEnabled = false;
A short example would look like this:
public class Car
{
// ... the other properties like in your class definition above
public virtual Coordinates Coordinates { get; set;}
}
public void Get()
{
var cars = _context.Cars.ToList();
var coordinates = cars.First().Coordinates; // EF loads the Coordinates of the first car NOW!
}
Explicitly load related entities to the context. The context will then populate the navigation properties for you. Looks like this:
public List<Car> Get()
{
// get all cars
var cars = _context.Cars.ToList();
// get all coordinates: the context will populate the Coordinates
// property on the cars loaded above
var coordinates = _context.Coordinates.ToList();
return cars;
}