There are 2 datatables structured in this way:
- First DataTAble has two cols: Customer, Email_Key
- Second DataTAble has two cols: IdCustomer (equals Email_Key), Email
Foreach row in Dt1 can correspond many rows in Dt2 (1 to N) joining EmailKey on CustomerId, so I want to flatten result inside 1 record by using the SelectMany func. How can I achieve this?