Auto Displaying Values
Hi,
sorry I am new to this. How would I be able to auto expand the values highlighted in yellow automatically please?
sorry I am new to this. How would I be able to auto expand the values highlighted in yellow automatically please?
Comments
from c in Customers
select new { c.Name, c.Orders, c.SalesPerson }
SO_SalesOrder_Lines.Take(100)
from c in SO_SalesOrder_Lines
select new { c.BASE_Product }
The table I want to query is named SO_SalesOrder_Lines and I want it to list all fields and expand the ones in yellow in the image attached above.
when just using
from c in SO_SalesOrder_Lines
select new { c.BASE_Product }
It returns data but i want it to also list the other fields (SO_SalesOrder_Lines.Take(100))