Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

.net entities query multiple join condition

var query = (from x in context.table1 
             join y in context.table2 on new {x.col1, x.col2} equals {b.key1, b.key2}  
             into result
query = from x in query
        where ...
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #entities #query #multiple #join #condition
ADD COMMENT
Topic
Name
5+9 =