EF 简单的 CRUD、分页 代码笔记

时间:2022-09-08 23:43:41

添加:
 static void Main(string[] args)
        {
            CCDBEntities ccdbContext = new CCDBEntities();

MyStudent user = new MyStudent();
  
            user.FName = "胡章诚";
            user.FAge = 21;
            user.FGender = "男";
            user.FMath = 88;
            user.FEnglish = 99;
            user.FClassId = 2;
            user.FBirthday = DateTime.Now;

ccdbContext.MyStudent.Add(user);
            ccdbContext.SaveChanges();
        }

-----------------------------------
修改整个表实体

static void Main(string[] args)
        {
            CCDBEntities ccdbContext = new CCDBEntities();

MyStudent user = new MyStudent();
            user.Fid = 21;   //注:修改的时候要为主键赋值
            user.FName = "胡章诚";
            user.FAge = 21;
            user.FGender = "男";
            user.FMath = 88;
            user.FEnglish = 99;
            user.FClassId = 2;
            user.FBirthday = DateTime.Now;

ccdbContext.MyStudent.Attach(user);
            ccdbContext.Entry<MyStudent>(user).State = System.Data.EntityState.Modified;
            ccdbContext.SaveChanges();
        }

----------------------------------------

修改一个列:
 static void Main(string[] args)
        {
            CCDBEntities ccdbContext = new CCDBEntities();

MyStudent user = new MyStudent();
            user.Fid = 22;
            user.FName = "胡章诚";
            user.FAge = 21;
            user.FGender = "男";
            user.FMath = 88;
            user.FEnglish = 99;
            user.FClassId = 2;
            user.FBirthday = DateTime.Now;

ccdbContext.MyStudent.Attach(user);
            ccdbContext.Entry<MyStudent>(user).Property<string>(u => u.FName).IsModified = true;
            ccdbContext.SaveChanges();

Console.WriteLine("修改成功");
            Console.ReadKey();
        }
-------------------------------------------
删除一条数据:
  static void Main(string[] args)
        {
            CCDBEntities ccdbContext = new CCDBEntities();

MyStudent user = new MyStudent();
            user.Fid = 22;

ccdbContext.MyStudent.Attach(user);
            ccdbContext.Entry<MyStudent>(user).State = System.Data.EntityState.Deleted;
            ccdbContext.SaveChanges();
        }

-----------------------------------------

查询:

1、用Lambda进行查询

var modelList = dbContext.MyStudent
                .Where(u => u.Fid < 100)
                .Where(u => u.Fid > 40)
                .Select(u => new { u.Fid, u.FName, u.FGender });

2、用linq查询
            var modelList = from u in dbContext.MyStudent
                            where u.Fid > 40 && u.Fid < 100
                            select new { u.FGender, u.Fid };

--------------------------------------

分页:

采用 Lambda表达式 分页:
            var modelList = dbContext.MyStudent
                .OrderBy(u=>u.Fid)
                .Skip(pagesize * (pageIndex - 1))
                .Take(pagesize);

EF 简单的 CRUD、分页 代码笔记的更多相关文章

  1. PHP分页初探 一个最简单的PHP分页代码的简单实现

    PHP分页代码在各种程序开发中都是必须要用到的,在网站开发中更是必选的一项. 要想写出分页代码,首先你要理解SQL查询语句:select * from goods limit 2,7.PHP分页代码核 ...

  2. PHP分页初探 一个最简单的PHP分页代码实现

    PHP分页代码在各种程序开发中都是必须要用到的,在网站开发中更是必选的一项. 要想写出分页代码,首先你要理解SQL查询语句:select * from goods limit 2,7.PHP分页代码核 ...

  3. 简单的JQuery分页代码

    1. [代码][JavaScript]代码      001 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...

  4. 8天掌握EF的Code First开发系列之2 简单的CRUD操作

    本文出自8天掌握EF的Code First开发系列,经过自己的实践整理出来. 本篇目录 创建控制台项目 根据.Net中的类来创建数据库 简单的CRUD操作 数据库模式更改介绍 本章小结 本人的实验环境 ...

  5. ASP&period;NET Core MVC&plus;Layui使用EF Core连接MySQL执行简单的CRUD操作

    前言: 本章主要通过一个完整的示例讲解ASP.NET Core MVC+EF Core对MySQL数据库进行简单的CRUD操作,希望能够为刚入门.NET Core的小伙伴们提供一个完整的参考实例.关于 ...

  6. 瞧一瞧&comma;看一看呐&comma;用MVC&plus;EF快速弄出一个CRUD&comma;一行代码都不用写&comma;真的一行代码都不用写&excl;&excl;&excl;&excl;

    瞧一瞧,看一看呐用MVC+EF快速弄出一个CRUD,一行代码都不用写,真的一行代码都不用写!!!! 现在要写的呢就是,用MVC和EF弄出一个CRUD四个页面和一个列表页面的一个快速DEMO,当然是在不 ...

  7. 简单的beego分页功能代码

    一个简单的beego分页小插件(源代码在最下面): 支持条件查询 支持参数保留 支持自定义css样式 支持表/视图 支持参数自定义 默认为pno 支持定义生成链接的个数 使用方式: 1)action中 ...

  8. EF简介及CRUD简单DEMO

    一.实体框架(Entity FrameWork)简介 • 简称EF • 与Asp.Net MVC关系与ADO.NET关系 • ADO.NET Entity FrameWork是微软以ADO.NET为基 ...

  9. bootstrap-paginator 分页插件笔记

    [MVC]bootstrap-paginator 分页插件笔记   bootstrap-paginator基于bootstrap框架,使用起来非常简单.官网:http://harttle.github ...

随机推荐

  1. python 根据现有文件树创建文件树

    # -*- coding: utf-8 -*- import os, errno def fileName(path):#获取文件夹 str = '' for i in range(1,len(pat ...

  2. selenium使用actions&period;moveToElement处理菜单

    //should set firefox path //FirefoxBinary binary=new FirefoxBinary(new File("C:\\Program Files ...

  3. Codeforces Round &num;260 &lpar;Div&period; 2&rpar;AB

    http://codeforces.com/contest/456/problem/A A. Laptops time limit per test 1 second memory limit per ...

  4. SecureCRT相关

    -------------------------------------------------- 如何解决SecureCRT汉字乱码的问题? 选择工具栏上的“选项”菜单在打开的下拉菜单中选择“会话 ...

  5. 了解OData(一)

    了解OData(一) 最近做了一个小项目,其中用到了 WCF Data Service,之前是叫 ADO.NET Data Service 的.关于WCF Data Service,博客园里的介绍并不 ...

  6. GNU C的定义长度为0的数组

    在标准C和C++中,长度为0的数组是被禁止使用的.不过在GNU C中,存在一个非常奇怪的用法,那就是长度为0的数组,比如Array[0];很多人可能觉得不可思议,长度为0的数组是没有什么意义的,不过在 ...

  7. think in java 手记(一)

    工作之余,不知道要做些什么.该做的事情都完成的差不多了,想看一下spring的东西,毕竟这些东西用的多.但是又想看一下关于javaee的东西,这个里面的设计模式多.想了一会儿,觉得这些无非都是工具,j ...

  8. Some&lowbar;tools

    Why and what There are lots of nice or great tools on the internet, sometimes I will just forget a p ...

  9. 【Django实例】博客1

    (上一篇) 一.概述 Blog是一个博客应用. dbe工程的目录结构,参考<序言>的最后部分.blog应用位于/home/russellluo/Django/dbe/dbe/blog目录下 ...

  10. 虚拟环境中pip install requirments&period;txt&colon; Cannot fetch index base URL https&colon;&sol;&sol;pypi&period;python&period;org&sol;simple&sol;

    *  : http://*.com/questions/15501133/python-pip-error-cannot-fetch-index-bas ...