I have software that creates sql tables during runtime. So none of it is known at design time. The software does not use entity framework and has it's own ways of reading the data from those tables (old school ADO).
Now I have new, separate piece of software (an API written from scratch) that uses EF, and it needs to read the data in these tables. On the fly I can create a SQL statement that will read these tables. It looks something like...
select ID0 , [Notes:5216] as [Notes5216], [Date:11512] as [Date11512] from [aCFProject_POS Install_1573] where ID0 = 44778
How do I take a sql query like the above and return the data in EF? The table name or column names aren't known until run time.