Entity Framework 学习第一天
文章是作为初学者记录之用,没有学习过的同学可以借鉴一下,至于用过和高手嘛,就算了吧。仅是入门。废话不多说了,马上新建个项目,添加Entity Framework,这个词以下将用EF代替。
本文使用的IDE为vs2012。我是新建了一个控制台项目,然后添加的EF,以后我会使用EF作为类库添加到项目中,但这次仅作了解。
选择Ado.net实体数据模型,文件名随便,我在这里选择了默认名称Model1.edmx,
在弹出的对话框中选择从数据库生成,这里有个名称叫做dbfirst,就是说数据库先存在,然后根据数据库生成实体模型等。
选择新建连接,然后选择你要实现的数据库和表,
表可以选择数据库中的一部分,也可以选择全部,这要看你的需要了,这里只做学习用,所以我只选择了一个user表。点击完成,这过程可能要等一会,因为要导入很多dll。
之后我们会看到一个类似
uml图,这要归结为vs的强大了,其实edmx文件就是一个xml文档,你可以使用xml打开方式打开这个edmx文件。下面是我的edmx文件
<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
<!-- EF Runtime content -->
<edmx:Runtime> <!-- SSDL content -->
<edmx:StorageModels>
<Schema Namespace="remotingModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
<EntityContainer Name="remotingModelStoreContainer">
<EntitySet Name="user" EntityType="remotingModel.Store.user" store:Type="Tables" Schema="dbo" />
</EntityContainer>
<EntityType Name="user">
<Key>
<PropertyRef Name="id" />
</Key>
<Property Name="id" Type="nvarchar" Nullable="false" MaxLength="" />
<Property Name="name" Type="nvarchar(max)" />
<Property Name="pwd" Type="nvarchar(max)" />
<Property Name="department" Type="int" />
<Property Name="status" Type="int" />
<Property Name="registertime" Type="datetime" />
<Property Name="level" Type="nvarchar" MaxLength="" />
<Property Name="cometime" Type="datetime" />
<Property Name="isdel" Type="int" />
<Property Name="balance" Type="money" />
</EntityType>
</Schema>
</edmx:StorageModels> <!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="remotingModel" Alias="Self" p1:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:p1="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
<EntityContainer Name="remotingEntities" p1:LazyLoadingEnabled="true">
<EntitySet Name="users" EntityType="remotingModel.user" />
</EntityContainer>
<EntityType Name="user">
<Key>
<PropertyRef Name="id" />
</Key>
<Property Name="id" Type="String" Nullable="false" MaxLength="" Unicode="true" FixedLength="false" />
<Property Name="name" Type="String" MaxLength="Max" Unicode="true" FixedLength="false" />
<Property Name="pwd" Type="String" MaxLength="Max" Unicode="true" FixedLength="false" />
<Property Name="department" Type="Int32" />
<Property Name="status" Type="Int32" />
<Property Name="registertime" Type="DateTime" Precision="" />
<Property Name="level" Type="String" MaxLength="" Unicode="true" FixedLength="false" />
<Property Name="cometime" Type="DateTime" Precision="" />
<Property Name="isdel" Type="Int32" />
<Property Name="balance" Type="Decimal" Precision="" Scale="" />
</EntityType>
</Schema>
</edmx:ConceptualModels> <!-- C-S mapping content -->
<edmx:Mappings>
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
<EntityContainerMapping StorageEntityContainer="remotingModelStoreContainer" CdmEntityContainer="remotingEntities">
<EntitySetMapping Name="users">
<EntityTypeMapping TypeName="remotingModel.user">
<MappingFragment StoreEntitySet="user">
<ScalarProperty Name="id" ColumnName="id" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="pwd" ColumnName="pwd" />
<ScalarProperty Name="department" ColumnName="department" />
<ScalarProperty Name="status" ColumnName="status" />
<ScalarProperty Name="registertime" ColumnName="registertime" />
<ScalarProperty Name="level" ColumnName="level" />
<ScalarProperty Name="cometime" ColumnName="cometime" />
<ScalarProperty Name="isdel" ColumnName="isdel" />
<ScalarProperty Name="balance" ColumnName="balance" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping>
</Mapping>
</edmx:Mappings> </edmx:Runtime>
<!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
<Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
<Connection>
<DesignerInfoPropertySet>
<DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
</DesignerInfoPropertySet>
</Connection>
<Options>
<DesignerInfoPropertySet>
<DesignerProperty Name="ValidateOnBuild" Value="true" />
<DesignerProperty Name="EnablePluralization" Value="False" />
<DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
<DesignerProperty Name="CodeGenerationStrategy" Value="无" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams></Diagrams>
</Designer>
</edmx:Edmx>
上面我用空行隔出来了三个部分,第一部分就是描述数据库,包括字段,字段类型。第二部分就是实体模型,注意下面的t4模板要用到这个部分。最后部分就是映射文件,也就是将第一部分与第二部分的内容之间的桥。对应关系。
下面我们打开Model1.tt文件,这里如果我们直接打开,效果就是一个txt文本。我们可以安装一个插件,在工具中选择扩展和更新,联机中搜索t4 editor,下载安装,重启vs,重新打开Model1.tt文件就可以看到效果了,这个文件读取之前的edmx文件,遍历edmx实体及实体的属性,生成相应实体的cs文件。我们可以说Model1.tt文件主要的作用就是生成实体文件的。还有一个context.tt文件,从文件名我们可以猜个大概(上下文,我们常常用这个东西操作好多东西),这时我们可以想一下,EF是用来操作数据库的,现在数据实体有了,怎么进行增删改查呢?对,就是这个context。我们这就来看看这个context.cs文件吧,
namespace EFConsole
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure; public partial class remotingEntities : DbContext
{
public remotingEntities()
: base("name=remotingEntities")
{
} protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
} public DbSet<user> users { get; set; }
}
}
似乎文件内容好少啊,别急,看父类DBContext,父类的方法很多。
remotingEntities类会将所有的数据实体封装成一个集合,然后让我们操作实体。
下面让我们来看看这个上下文的强大功能吧
简单的增删改查功能
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace EFConsole
{
class Program
{
public static remotingEntities dbContext = new remotingEntities();
static void Main(string[] args)
{ add();
select();
update();
remove();
Console.ReadKey();
} #region 添加方法
/// <summary>
/// 添加方法
/// </summary>
public static void add()
{
int res = -;
user tempData = new user() { name = "test", id = "", balance = };
dbContext.users.Add(tempData);
res = dbContext.SaveChanges();
if (res > )
{
Console.WriteLine("add function:suc");
}
else
{
Console.WriteLine("add function:fail");
}
}
#endregion #region 查询方法
/// <summary>
/// 查询方法
/// </summary>
public static void select()
{
user tempData = dbContext.users.Where(e => e.id == "").FirstOrDefault();
Console.WriteLine("select function:" + tempData.name);
}
#endregion #region 修改方法
/// <summary>
/// 修改方法
/// </summary>
public static void update()
{
int res = -;
user tempData = dbContext.users.Where(e => e.id == "").FirstOrDefault();
Console.WriteLine("before update function:" + tempData.name);
tempData.name = "update name";
res = dbContext.SaveChanges();
if (res > )
{
Console.WriteLine("update function:suc,update data userName is" + tempData.name);
}
else
{
Console.WriteLine("update function :fail");
}
}
#endregion #region 删除方法
/// <summary>
/// 删除方法
/// </summary>
public static void remove()
{
int res = -;
user tempData = dbContext.users.Where(e => e.id == "").FirstOrDefault();
dbContext.users.Attach(tempData);
dbContext.users.Remove(tempData);
res = dbContext.SaveChanges();
if (res > )
{
Console.WriteLine("remove function :suc");
}
else
{
Console.WriteLine("remove function :fail");
}
}
#endregion
}
}
成功了哦,不信可以去数据库证实一下。
今天就写到这里了,有时间还会将EF当做类库写一个简单的测试。
Entity Framework 学习第一天的更多相关文章
- Entity Framework 学习第一天 续
改写第一天的增删改查方法,观察增删改查的本质 using System; using System.Collections.Generic; using System.Data.Entity.Infr ...
- Entity Framework 学习整理(分播客整理)
MSDN: http://msdn.microsoft.com/en-us/data/aa937723 台湾博客: http://www.dotblogs.com.tw/yc421206/ http: ...
- Entity Framework学习笔记
原文地址:http://www.cnblogs.com/frankofgdc/p/3600090.html Entity Framework学习笔记——错误汇总 之前的小项目做完了,到了总结经验和 ...
- Entity Framework 学习中级篇1—EF支持复杂类型的实现
本节,将介绍如何手动构造复杂类型(ComplexType)以及复杂类型的简单操作. 通常,复杂类型是指那些由几个简单的类型组合而成的类型.比如:一张Customer表,其中有FristName和Las ...
- Entity Framework 学习
Entity Framework 学习初级篇1--EF基本概况 Entity Framework 学习初级篇2--ObjectContext.ObjectQuery.ObjectStateEntry. ...
- ADO.NET Entity Framework学习笔记(3)ObjectContext
ADO.NET Entity Framework学习笔记(3)ObjectContext对象[转] 说明 ObjectContext提供了管理数据的功能 Context操作数据 AddObject ...
- Entity Framework 学习整理
MSDN: http://msdn.microsoft.com/en-us/data/aa937723 台湾博客: http://www.dotblogs.com.tw/yc421206/ http: ...
- Entity Framework 学习笔记(2)
上期回顾:Entity Framework 学习笔记(1) Entity Framework最主要的东西,就是自己创建的.继承于DbContext的类: /// <summary> /// ...
- MVC5 Entity Framework学习
MVC5 Entity Framework学习(1):创建Entity Framework数据模型 MVC5 Entity Framework学习(2):实现基本的CRUD功能 MVC5 Entity ...
随机推荐
- 二模10day2解题报告
T1.最多因子数(divisors) 给出范围l,r求其中约数和最大的最小整数. 非常深井冰的题目:如果特判加暴力的话分数低的可怜 AC做法要用到分解质因数和线性筛(这俩好写),然而,一个一个枚举还是 ...
- AnyCAD C++ SDK与OpenCASCADE互操作
AnyCAD SDK有.Net和C++两个版本,使用C++版本的AnyPlatformOcc模块可以实现与OpenCASCADE互操作. C++版本(VS2010 32bit)下载 在AOBridge ...
- app打包流程
1.什么是打包 将应用程序统一放在一个后缀是ipa的文件中,然后发给其他人,可以安装在手机上供用户或测试人员安装 2.可安装ipa的前提 ①说清楚是哪一个应用程序(App Id) ②可以安装在哪一台设 ...
- bootstrap知识小点
年底没什么项目做了,整理下最近做的网站使用到的bootstrap知识 一.导入bootstrap样式和脚本 <link href="css/bootstrap.min.css" ...
- c# 数据库操作学习
一. 如何处理数据库连接 1. 数据库连接可以分为“物理连接”和“逻辑连接”(默认使用连接池的情况下Pooling=true): 物理连接:创建数据库连接时,默认会有一定数量的物理连接(默认Min P ...
- 使用nodejs引用socket.io做聊天室
Server: var app = require('http').createServer(handler) , io = require('socket.io').listen(app) , fs ...
- ES6还是ES2015?
遇到了一个困惑 原来称作es6的现在突然变成es2015 了 原因是这个事ecma-262 的第六次变更,所有以前按照惯例称为es6. 但是为了更小版本频繁发布,现在 标准叫法是: esmasc ...
- sublime简单配置
Preferences------->settings user { "font_face": "Courier New", "font_siz ...
- Laravel 安装predis 扩展
在安装predis扩展之前先安装composer,安装教程在https://getcomposer.org/download/: php -r "copy('https://getcompo ...
- js数组的内部实现,迭代器,生成器和内包
js内部实现 在js以外的很多语言中,数组将会隐式占用一段连续的内存空间.这种隐式的内部实现,使得高效的内存使用及高速的元素方法称为可能,而 在javascript中,数组实体是一个对象,所以通常的实 ...