I have two objects
List<Report>
List<Newsletter>
I need certain properties like
Id
Date
Status
text
from the two lists. Is there a way to merge these list and query it using linq statement to return the specific properties as a separate list?
Please help.
Structure of the object is as follows:
Report
{
int id,
datetime reportDate,
enum Status,
string text
};
Newsletter
{
int id,
datetime newsletterDate,
string Status,
string text
};
Update, to equalize the Status properties: