Is it possible to have a single POCO class that is made up of multiple store entities. For example my database has 4 related tables Tabe1, Table2, Table3, and Table4.
I want a single POCO class to represent some columns in the above tables. So the POCO class will be meaningful representation of these four tables. Only some columns will be represented not all.
I don't need any updates or delete operations. I want to build a reporting solution. I am using POCO because I want to use the same poco for other data sources.
So it possible to have a single POCO class that represents data from multiple database tables?
I'd really appreciate your help and thanks in advance.