Beispiel #1
0
 private void FillClients()
 {
     using (var db = new bigshopeEntities())
     {
         var query = db.showCustomers();
         GV.DataSource = query;
         GV.DataBind();
     }
 }