I am building a Dashboard in my application and just wanted to know if there is a different way to access a tables columns other that how I am doing it. Currently I am invoking a data source, then set a property to a query like this... ${result.Where(o=> o.DealSaleTp=="New").Sum(o=> o.Count)}
If I am using a SQL View that only has one row with the correct data that I want to access directly, how do I access the table in a similar way to add and edit crud pages ie. ${tablexxx.columnyyy}?
Just curious as the queries are really bogging down the load time.