Exemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            var ent = new Database1Entities();
            // LINQで検索する
            var q = from t in ent.商品
                    select t;

            // 結果を表示する
            dataGridView1.DataSource = q.ToList();
        }
Exemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            var ent = new Database1Entities();
            // LINQで検索する
            var q = from t in ent.商品
                    select t.単価;
            int sum = q.Sum();

            // 結果を表示する
            textBox1.Text = sum.ToString();
        }