Search results for query: *

  1. lordbaddkitty

    Question Linq join on parameterized distinct key CASE INSENSITIVE

    "Public member 'sRows' on type 'String' not found." Changed it to mRows(ThePrimaryKey),sRows(TheForign Key) (comma rather than period) "Conversion from type 'DBNull' to type 'String' is not valid."
  2. lordbaddkitty

    Question Linq join on parameterized distinct key CASE INSENSITIVE

    To Revisit a previous question with a further stipulation... Anyone know how to do the following, IGNORING CASE? Dim Matches = From mRows In LinqMasterTable Join sRows In LinqSecondTable _ On mRows(ThePrimaryKey) Equals sRows(TheForignKey) _ Order By...
  3. lordbaddkitty

    Question Linq join on parameterized distinct key

    Declarations and Such: Private Sub LinqTwoTableInnerJoin(ByRef qMasterDS As DataSet, _ ByRef qMasterTable As DataTable, _ ByRef qSecondDS As DataSet, _ ByRef qSecondTable As...
  4. lordbaddkitty

    Question Linq join on parameterized distinct key

    I'm trying to LINQ two tables based on a dynamic key. User can change key via a combo box. Key may be money, string, double, int, etc. Currently I'm getting the data just fine, but without filtering out the doubles. I can filter the double in VB, but it's slooooow. I'd like to do it in the LINQ...
Back
Top