For the below c#, how I do make the "Id" column converted to a string? I needed to make this as a direct string query because the Second Column Name is variable, and I need a dynamic query to getData.
var stringValueLookupTable = await dbSet.Select(string.Format("new (Id, {0})", someStringVariable)).ToListAsync();