ADO.NET实体数据模型详细介绍

所属分类: 软件编程 / C#教程 阅读数: 116
收藏 0 赞 0 分享

OleDbConnection,OracleConnection 或者SqlConnection这种连接,直接执行sql语句。现在的连接方式执行sql语句有了很大的不同,下面先看看简单的单表的增删改查操作,然后再看多表的关联查询,带参数查询等。
一、ADO.NET Entity对单表的增删改查
有一个表,即在工程中是一个实体user,为了测试方便,所有字段为string型。

\
1、增加新记录
增加一条记录如下:

[csharp] 
using (OracleEntities entities = new OracleEntities()) 

               User uer = User.CreateUser("id", "name", "age", "1"); 

               entities.User.AddObject(user); 

               entities.SaveChanges(); 

 using (OracleEntities entities = new OracleEntities())
 {
                User uer = User.CreateUser("id", "name", "age", "1");

                entities.User.AddObject(user);

                entities.SaveChanges();
}
2、删除内容

复制代码 代码如下:
 
using (OracleEntities entities = new OracleEntities()) 
 { 
                User user = entities.User.First<User>(a => a.ID.Equals("id")); 

                entities.DeleteObject(user); 

                entities.SaveChanges(); 

using (OracleEntities entities = new OracleEntities())
 {
                User user = entities.User.First<User>(a => a.ID.Equals("id"));

                entities.DeleteObject(user);

                entities.SaveChanges();
}


3、修改内容
复制代码 代码如下:
 
using (OracleEntities entities = new OracleEntities()) 
 { 
                User user = entities.User.First<User>(a => a.User.Equals("id")); 

                user.Remarks = "修改了内容"; 

                entities.SaveChanges(); 

using (OracleEntities entities = new OracleEntities())
 {
                User user = entities.User.First<User>(a => a.User.Equals("id"));

                user.Remarks = "修改了内容";

                entities.SaveChanges();
}


4、查询内容
(1)实体直接查询
[/code] 
using (OracleEntities entities = new OracleEntities()) 
 { 
                ObjectQuery<User> result = entities.User;//查询所有  

                foreach (User item in result) 
                { 

                } 

using (OracleEntities entities = new OracleEntities())
 {
                ObjectQuery<User> result = entities.User;//查询所有

                foreach (User item in result)
                {

                }
}
[/code]
(2)Esql查询

复制代码 代码如下:

ObjectQuery<DbDataRecord> result = entities.CreateQuery<DbDataRecord>("select value it  from  OracleEntities.User as it ");

(3)按条件查
复制代码 代码如下:

var result = entities.User.Where(o => o.id.Equals("id"));

二、关联查询
比如还有个表Other与User外键关联。

\
进行查询如下:

复制代码 代码如下:
 
using (OracleEntities entities = new OracleEntities()) 
 { 
                string esql = "SELECT b.detail FROM OracleEntities.User as a,OracleEntities.Other as b where a.otherid = b.id and a.id='id'"; 

                ObjectQuery<DbDataRecord> query = entities.CreateQuery<DbDataRecord>(esql); 

                foreach (DbDataRecord r in query) 
                { 
                    string ss = r["detail"].ToString(); 
                } 
 } 

using (OracleEntities entities = new OracleEntities())
 {
                string esql = "SELECT b.detail FROM OracleEntities.User as a,OracleEntities.Other as b where a.otherid = b.id and a.id='id'";  www.jb51.net

                ObjectQuery<DbDataRecord> query = entities.CreateQuery<DbDataRecord>(esql);

                foreach (DbDataRecord r in query)
                {
                    string ss = r["detail"].ToString();
                }
 }


当然这些都是最基本的用法,因为使用的Linq和ESql,在后面再Linq和ESql的用法里再详细说明。
 

更多精彩内容其他人还在看

c#开发word批量转pdf源码分享

已经安装有Office环境,借助一些简单的代码即可实现批量Word转PDF,看下面的实例源码吧
收藏 0 赞 0 分享

c# xml API操作的小例子

这篇文章主要介绍了c# xml API操作的小例子,有需要的朋友可以参考一下
收藏 0 赞 0 分享

c#唯一值渲染实例代码

这篇文章主要介绍了c#唯一值渲染实例代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

淘宝IP地址库采集器c#代码

这篇文章主要介绍了淘宝IP地址库采集器c#代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C#在后台运行操作(BackgroundWorker用法)示例分享

BackgroundWorker类允许在单独的专用线程上运行操作。如果需要能进行响应的用户界面,而且面临与这类操作相关的长时间延迟,则可以使用BackgroundWorker类方便地解决问题,下面看示例
收藏 0 赞 0 分享

c#文本加密程序代码示例

这是一个加密软件,但只限于文本加密,加了窗口控件的滑动效果,详细看下面的代码
收藏 0 赞 0 分享

c#生成站点地图(SiteMapPath)文件示例程序

这篇文章主要介绍了c#生成站点地图(SiteMapPath)文件的示例,大家参考使用
收藏 0 赞 0 分享

C# 键盘Enter键取代Tab键实现代码

这篇文章主要介绍了C# 键盘Enter键取代Tab键实现代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C# WinForm导出Excel方法介绍

在.NET应用中,导出Excel是很常见的需求,导出Excel报表大致有以下三种方式:Office PIA,文件流和NPOI开源库,本文只介绍前两种方式
收藏 0 赞 0 分享

C#串口通信程序实例详解

在.NET平台下创建C#串口通信程序,.NET 2.0提供了串口通信的功能,其命名空间是System.IO.Ports,创建C#串口通信程序的具体实现是如何的呢?让我们开始吧
收藏 0 赞 0 分享
查看更多