I need to create a query that returns data with column name (without square brackets) as indicated in the code below. How can I do that?
var query = db.Customers
.Where("City = @0 and Orders.Count >= @1", "London", 10)
.OrderBy("CompanyName")
.Select("new(CompanyName as [Company Name])");