zoukankan      html  css  js  c++  java
  • Linq to sql(二):DataContext与实体(三)

    执行查询

    NorthwindDataContext ctx = new NorthwindDataContext("server=xxx;database=Northwind;uid=xxx;pwd=xxx");

    string newcity = "Shanghai";

    ctx.ExecuteCommand("update Customers set City={0} where CustomerID like 'A%'", newcity);

    IEnumerable<Customer> customers = ctx.ExecuteQuery<Customer>("select * from Customers where CustomerID like 'A%'");

    GridView1.DataSource = customers;

    GridView1.DataBind();

           前一篇文章已经说了,虽然Linq to sql能实现90%以上的TSQL功能。但是不可否认,对于复杂的查询,

    使用TSQL能获得更好的效率。因此,DataContext类型也提供了执行SQL语句的能力。代码的执行结果如下图:

    创建数据库

    testContext ctx = new testContext("server=xxx;database=testdb;uid=xxx;pwd=xxx");

    ctx.CreateDatabase();

     

    [Table(Name = "test")]

    public class test

    {

        [Column(IsPrimaryKey = true, IsDbGenerated = true)]

        public int ID { get; set; }

     

        [Column(DbType="varchar(20)")]

        public string Name { get; set; }

    }

     

    public partial class testContext : DataContext

    {

        public Table<test> test;

        public testContext(string connection) : base(connection) { }

    }

           这段代码在数据库中创建了名为testdb的数据库,等同于下面的脚本:

    CREATE TABLE [dbo].[test](

        [ID] [int] IDENTITY(1,1) NOT NULL,

        [Name] [varchar](20) COLLATE Chinese_PRC_CI_AS NULL,

     CONSTRAINT [PK_test] PRIMARY KEY CLUSTERED

    (

        [ID] ASC

    )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]

    ) ON [PRIMARY]

           同时,DataContext还提供了DeleteDatabase()方法,在这里就不列举了。

     

    使用DbDataReader数据源

    using System.Data.SqlClient;

    var conn = new SqlConnection("server=xxx;database=Northwind;uid=xxx;pwd=xxx");

    var ctx = new DataContext(conn);

    var cmd = new SqlCommand("select * from customers where CustomerID like 'A%'", conn);

    conn.Open();

    var reader = cmd.ExecuteReader();       

    GridView1.DataSource = ctx.Translate<Customer>(reader);

    GridView1.DataBind();

    conn.Close();

           你同样可以选择使用DataReader获取数据,增加了灵活性的同时也增加了性能。

    看到这里,你可能会觉得手工定义和数据库中表对应的实体类很麻烦,不用担心,

    VS2008提供了自动生成实体类以及关系的工具,工具的使用将在以后讲解。

    今天就讲到这里,和DataContext相关的事务、加载选项、并发选项以及关系实体等高级内容也将在以后讲解。

  • 相关阅读:
    Unix/Linux环境C编程入门教程(23) 字符数字那些事儿
    Unix/Linux环境C编程入门教程(22) C/C++如何获取程序的运行时间
    如何定义函数模板
    Unix/Linux环境C编程入门教程(21) 各个系统HelloWorld跑起来效果如何?
    为什么使用模板
    CC++初学者编程教程(16) 搭建Xcode cocos2dx开发环境
    delete noprompt archivelog 报错ORA-00245,RMAN-08132
    RMAN-03002、RMAN-06059
    RAC RMAN 备份 RMAN-03009 ORA-19504 ORA-27040 RMAN-06012 channel c3 not allocated 错误分析
    RMAN备份到NFS,报错 ORA-27054
  • 原文地址:https://www.cnblogs.com/kevin2013/p/1749106.html
Copyright © 2011-2022 走看看