private void button1_Click(object sender, EventArgs e)
        {
            Table_Adabar s = ul.Table_Adabars.SingleOrDefault(x => x.Area == "2");

            if (s != null)
            {
                textBoxBedrooms.Text   = s.BedRooms;
                textBoxAddress.Text    = s.Address;
                textBoxSize.Text       = s.Size;
                textBoxRentAmount.Text = s.RentAmount;
            }
            pictureBox1.Show();
            pictureBox2.Show();
        }
Example #2
0
 partial void UpdateTable_Adabar(Table_Adabar instance);
Example #3
0
 partial void DeleteTable_Adabar(Table_Adabar instance);
Example #4
0
 partial void InsertTable_Adabar(Table_Adabar instance);