C# LINQ Dynamic Join - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:30:42Zhttp://stackoverflow.com/feeds/question/852883http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/852883/c-linq-dynamic-join0C# LINQ Dynamic Joinblu2009-05-12T13:48:44Z2009-10-02T07:00:04Z
<blockquote>
<p><strong>Duplicate:</strong> <a href="http://stackoverflow.com/questions/389094/how-to-create-a-dynamic-linq-join-extension-method">How to create a dynamic Linq Join extension method</a></p>
</blockquote>
<p>I am using System.Linq.Dynamic to create dynamic two queries</p>
<pre><code>var foos = db.Foos.Where(whereClause1);
var bars = db.Bars.Where(whereClause2);
</code></pre>
<p>I'd like to do a Join on the two expressions (knowing it will give an And). I have a join in code:</p>
<pre><code>var target = from f in foos
join b in bars on f.SomeId equals b.SomeId
select f;
</code></pre>
<p>And this yields the expected result. Is there a way to do this dynamically with an expression in a string? I have metadata that defines the relationships and expressing the join by a string would be much simpler then expressing it in code. I can see the implementations of the other keywords in DynamicQueryable, maybe someone has a Join already written similar to the existing methods.</p>
http://stackoverflow.com/questions/852883/c-linq-dynamic-join/859697#8596970Answer by blu for C# LINQ Dynamic Joinblu2009-05-13T18:45:53Z2009-05-13T18:45:53Z<p>I found the solution to this here:
<a href="http://stackoverflow.com/questions/389094/how-to-create-a-dynamic-linq-join-extension-method">http://stackoverflow.com/questions/389094/how-to-create-a-dynamic-linq-join-extension-method</a></p>