Talk:Questions
How to use Settings.ttinclude,
it throw error while runs into repo.Find(expression).ToList()
I want it return object list of all records in table, I have 1 million records. the error says 'System.OutOfMemoryException'
Multiple Join
I have written a fluent query for joining few tables. The problem is that Subsonic always try to map the columns from the root table.
Ex: new DB.Select.From<User>() .InnerJoin<Organization>() .InnerJoin<OrgBilling>(OrgBillingTable.OrganizationIdColumn, OrganizationTable.IdColumn) .ExecuteTypedList<User>();
This query always throws an exception saying that User Table doesn't have a OrganizationId column to map with.