I'm trying to do a join/ association in entity framework using linq.
I have the following two tables:
Institution
id name country_code(same as iso3) etc...
Country
id name iso3
I have tried the following but i'm getting stuck at where to associate the objects with each other:
List<Institution> ins = _context.Institution
.Include(o => o.country)
thanks