Hi,
Help me understand what is wrong with my query?
Option Strict On disallows implicit conversions from ‘String’ to ‘Boolean’.
CredentialDT.AsEnumerable.Where(Function( r) in_UserID.Equals(r(“UserID”).ToString and in_Password.Equals(r(“Password”).ToString))).Select(Function(r) r(“UserName”).ToString).ToList
output variable data type is Systems.Collections.Generic.List<System.String>
in_UserID and in_Password string type and IN direction arguments.