Hello,
I have question for you.
I have 2 table, and one of them consist column for example "Operation" , and second table has columns with Name and Description.
Now, I want to select all columns from first table, but in Operation field I want to pass value from Description field, because value from Operation equals value of Name in second table. I used Join method in Linq, and it works but "select" return only matching record.
I'm wondering how to write select with LINQ that return all matching data if value from "Operation" matching to value from "Name" but also retrun records if value from "Operation" doestn't matching to value from "Name" then return value from "Operation" field.
In this moment in select statement I have for example
.Select( table1.Id, table2.Description)