I want to merge two lists of different types into one list of new type. I would use join, but if for example List A doesnt have a value for that common property, i still want to use the values for List B.
class A{
decimal AValue
DateTime Date
int UserID
}
class B{
int BValue
DateTime Date
int UserID
}
class Merge{
decimal? Avalue
int? BValue
DateTime Date
int UserID
}