Question Linq join on parameterized distinct key CASE INSENSITIVE

lordbaddkitty

New member
Joined
Sep 8, 2010
Messages
4
Programming Experience
1-3
To Revisit a previous question with a further stipulation...

Anyone know how to do the following, IGNORING CASE?

VB.NET:
Dim Matches = From mRows In LinqMasterTable Join sRows In LinqSecondTable _
             On mRows(ThePrimaryKey) Equals sRows(TheForignKey) _
             Order By mRows(ThePrimaryKey) _
             Select mRows, sRows

For details about the query and it's functions / usage, the previous post is here.
 
Back
Top