Exemple #1
0
 private void Form1_Load(object sender, EventArgs e)
 {
     // <Snippet3>
     ServiceReference1.northwindModel.northwindEntities proxy = new
                                                                ServiceReference1.northwindModel.northwindEntities(new
                                                                                                                   Uri("http://localhost:53397/NorthwindCustomers.svc/"));
     this.customersBindingSource.DataSource = proxy.Customers;
     // </Snippet3>
 }
Exemple #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            // <Snippet4>
            ServiceReference1.northwindModel.northwindEntities proxy = new
                                                                       ServiceReference1.northwindModel.northwindEntities(new
                                                                                                                          Uri("http://localhost:53397/NorthwindCustomers.svc/"));
            string city = textBox1.Text;

            if (city != "")
            {
                this.customersBindingSource.DataSource = from c in
                                                         proxy.Customers where c.City == city select c;
                // </Snippet4>
            }
        }