This is MySQL
SELECT *
FROM Cities as a
inner join Countries as b
on a.CountryCode = b.Code
where b.Name like CountryName
How can I wrote this into LINQ I only manage to write until this part
from country in db.Set<Country>()
join city in db.Set<City>() on country.CountryCode equals city.CountryCode
This is just the inner join How can I continue in order to get the output for the CountryName