The firm I work at is considering the use of LLBLGen Pro v2 for a project and I've been asked to take a look at it.
I got started with the basics (CRUD from a single table) and I like what I see. I decided to take it to the next level by trying to use "Fields mapped on relations" but can't seem to get it to work.
This is the scenario that I've setup:
1. A Country table with columns Id and Name.
2. A City table with columns Id, Name and CountryId.
I'm retrieving all the cities from the City table using FetchEntityCollection and then access the Country property for the City object returned, but it's null.
I've also tried getting all the countries from the Country table for which the City property for the Country object returns an EntityCollection (typed City via generics) that contains 0 elements.
Am I missing a method call somewhere?
Any help appreciated.