I am trying to query data from List with Lambda expression. Below is my Users class
Users
Id,Name,Password, EmailAddress
Required data would be an array of arrays using two columns from list Name and password .Select(c => c.LastUpdatedDate + "," + c.LastUpdatedDate ).ToArray();. Result wold be something like belwo:
[["Name1","***"],["Name2","+++"],["Name3","///"]]
Can you please guide and help me selecting this.