Hi goose, thanks for the suggestion
However, i m looking for a way to actually without regenerating the code, i can insert
my own SQL queries.
One major problem i m facing now is this:
suppose i have 2 tables:
Customer, and Country
Customer table has an foreign key accessing to Country table.
Now that i want to display a gridview in ASP.NET (C#) such us:
Cust Name , Country (Name instead of ID stored in Customer table)
Then i would like to utilize the auto handling of edit and delete of GridView.
I had tried using Typedlist, but it seems cumbersome, and most importantly
it does not support GridView auto handling if i m to bind it at run time, e.g.:
CustomerListTypedList custList = new CustomerListTypedList();
GridView.Datasource = custList;
Can anyone point me to the direction for this? Thanks