• (LINQ 学习系列)(5)Linq教程实例: 单表操作之增 删 改 查询


    新增操作
    private void toolStripBtnAdd_Click(object sender, EventArgs e)
            {
                //新建立一个类,然后属性赋值
                student mystudent = new student();
                mystudent.StudentName = "MeetWeb";
                mystudent.Sex = "Man";
                mystudent.Old = 17;
               DataClasses1DataContext db = new DataClasses1DataContext(sqlconStr);
                db.student.InsertOnSubmit (mystudent);
                db.SubmitChanges();
                DataLoad();
                //this.dataGridView1.Refresh();
            }

    删除操作


    private void toolStripBtnDel_Click(object sender, EventArgs e)
            {
                //Delete Action
               DataClasses1DataContext db = new DataClasses1DataContext(sqlconStr);
               //Need to Delete the ID is 6
                student mystudent = db.GetTable<student>().First<student>(p => p.ID == 4);
                db.student.DeleteOnSubmit(mystudent);
            }

    更新操作

       

        private void toolStripBtnSave_Click(object sender, EventArgs e)
            {
                //Modify Action
                DataClasses1DataContext db = new DataClasses1DataContext(sqlconStr);
                //Need to update the ID is 6
                student mystudent = db.GetTable<student>().First<student>(p => p.ID == 5);
                mystudent.Old = 18;
                mystudent.Sex = "woman";
                db.SubmitChanges();
            }


    多条件的查询

    private List<student> Search(string id, string studentname)
            {
                DataClasses1DataContext db = new DataClasses1DataContext(sqlconStr);
                List<student> mystudent = db.GetTable<student>().First<student>(p => p.ID == 4&&p.
    studentname=studentname).ToList();
                return mystudent  ;
            }

     

  • 相关阅读:
    Bluedroid与BluZ,蓝牙测试方法的变动(基于bludroid和BlueZ的对比)
    dumpsys 用法
    ffmpeg开发指南
    Python七大原则,24种设计模式
    总结工厂模式---简单工厂、工厂方法、抽象工厂
    抽象工厂(Abstract Factory)
    工厂模式(Factory Method)
    逻辑回归(Logistic Regression) ----转载
    随机森林(Random Forest)--- 转载
    时间序列分析
  • 原文地址:https://www.cnblogs.com/meetweb/p/2415181.html
Copyright © 2020-2023  润新知