I am using Entity Framework. I want to select data from multiple tables in the database having no foreign key relation like
select
tOut.columnId, wo.columnType, tIn.*
from
TbaleA tIn,
TableB tOut,
TableC wo
where
1 = 1
and tIn.columnRefId = tOut.columnGuid
and tOut.columnId = wo.columnId
Is there any solution in Entity Framework for this? I have tried by using include syntax its not working for me ..