Ok so I am wondering about efficency here.
I have a DB with over 60 Fields... I need to be able to view ALL of those fields in the NestedViewTemplate, however I am only displaying 4 (four) of those fields in the actual grid.
Since I need ALL of those records, I am currently binding my grid to a StoredProcedure where I am using "Select *"
My problem is that I don't know how effecient it is going to be when I have to call 10,000 records.
Is there a way to only call the "select * from table where ID = @ID " when the "Details" button is called?
I have a DB with over 60 Fields... I need to be able to view ALL of those fields in the NestedViewTemplate, however I am only displaying 4 (four) of those fields in the actual grid.
Since I need ALL of those records, I am currently binding my grid to a StoredProcedure where I am using "Select *"
My problem is that I don't know how effecient it is going to be when I have to call 10,000 records.
Is there a way to only call the "select * from table where ID = @ID " when the "Details" button is called?