Hi, I have a question...
I'm using ADO Entity FrameWork and displays information in a GridView, all filters work correctly...
When I get the information with the Entity Framework, I put a top... I mean, if i have 50 records in a table, only I get 20.
Code:
var table = Context.Table.Top(20);
GridView1.DataSource = table;
I want to do is put other filter options (custom filter) in the menu of filters to obtain the others 30 records. I mean, how can I put other options in the menu filter and specify my own code to make another type of filter?
because The default filters only filter the records displayed.
my apologies for my english I hope to have explained..
Thanks!!
I'm using ADO Entity FrameWork and displays information in a GridView, all filters work correctly...
When I get the information with the Entity Framework, I put a top... I mean, if i have 50 records in a table, only I get 20.
Code:
var table = Context.Table.Top(20);
GridView1.DataSource = table;
I want to do is put other filter options (custom filter) in the menu of filters to obtain the others 30 records. I mean, how can I put other options in the menu filter and specify my own code to make another type of filter?
because The default filters only filter the records displayed.
my apologies for my english I hope to have explained..
Thanks!!