C#之EntityFramework的应用

目录

1,名词概述。

2,实体数据模型EDM介绍。

3,规范函数。

4,查看Linq转换成的SQL语句。

5,数据的增删改查。

5.1,数据查询

5.2,数据插入

5.3,数据更新

5.4,数据删除

6,使用SQL语句

6.1,无结果集返回时

6.2,有结果集返回值时

6.3,调用存储过程

6.3.1,定义存储过程

         6.3.2,调用存储过程

7,EF性能优化。

7.1,状态说明

7.2,优化方法


1,名词概述。

1.1,ORM:对象映射模型。

1.2,EntityClient:实体代理,用来操作EDM(实体对象模型)。

1.3,ADO.Net Provider:翻译Sql语句,用来访问数据库。

1.4,EDM(EntityDataModel):实体数据模型。

1.5,CRUD :Create,Read,Update,Delete。

2,实体数据模型EDM介绍。

        EDM包含三部分SSDL,CSDL,MSL。实现将关系数据库模型转换为实体数据模型,并将由三部分组成结构描述放在扩展名为.edmx的XML文件中。

  • 添加实体数据模型

  • 选择使用模式(当前使用来自数据库的EF设计器模式)

注意事项:使用Code First模型将不产生edmx文件。

  • 连接数据库,添加完成后项目中自动生成edmx文件。

  • 选择edmx文件右键选择打开方式,在打开方式对话框中选择XML(文本)编辑器

  • 查看详细的存储结构,实体结构,映射关系等

SSDL:存储架构定义语言。负责与数据库中的数据表做实体对应(将数据表的结构与关系用xml描述)

<!-- SSDL content --><edmx:StorageModels><Schema Namespace="EFDBModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2008" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl"><EntityType Name="Admins"><Key><PropertyRef Name="LoginId" /></Key><Property Name="LoginId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" /><Property Name="LoginPwd" Type="varchar" MaxLength="20" Nullable="false" /><Property Name="AdminName" Type="varchar" MaxLength="20" Nullable="false" /></EntityType><EntityType Name="ScoreList"><Key><PropertyRef Name="Id" /></Key><Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" /><Property Name="StudentId" Type="int" Nullable="false" /><Property Name="CSharp" Type="int" /><Property Name="SQLServerDB" Type="int" /><Property Name="UpdateTime" Type="smalldatetime" Nullable="false" /></EntityType><EntityType Name="StudentClass"><Key><PropertyRef Name="ClassId" /></Key><Property Name="ClassId" Type="int" Nullable="false" /><Property Name="ClassName" Type="varchar" MaxLength="20" Nullable="false" /></EntityType><EntityType Name="Students"><Key><PropertyRef Name="StudentId" /></Key><Property Name="StudentId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" /><Property Name="StudentName" Type="varchar" MaxLength="20" Nullable="false" /><Property Name="Gender" Type="char" MaxLength="2" Nullable="false" /><Property Name="Birthday" Type="smalldatetime" Nullable="false" /><Property Name="StudentIdNo" Type="numeric" Precision="18" Scale="0" Nullable="false" /><Property Name="Age" Type="int" Nullable="false" /><Property Name="PhoneNumber" Type="varchar" MaxLength="50" /><Property Name="StudentAddress" Type="varchar" MaxLength="500" /><Property Name="ClassId" Type="int" Nullable="false" /></EntityType><Association Name="fk_classId"><End Role="StudentClass" Type="Self.StudentClass" Multiplicity="1" /><End Role="Students" Type="Self.Students" Multiplicity="*" /><ReferentialConstraint><Principal Role="StudentClass"><PropertyRef Name="ClassId" /></Principal><Dependent Role="Students"><PropertyRef Name="ClassId" /></Dependent></ReferentialConstraint></Association><Association Name="fk_StudentId"><End Role="Students" Type="Self.Students" Multiplicity="1" /><End Role="ScoreList" Type="Self.ScoreList" Multiplicity="*" /><ReferentialConstraint><Principal Role="Students"><PropertyRef Name="StudentId" /></Principal><Dependent Role="ScoreList"><PropertyRef Name="StudentId" /></Dependent></ReferentialConstraint></Association><EntityContainer Name="EFDBModelStoreContainer"><EntitySet Name="Admins" EntityType="Self.Admins" Schema="dbo" store:Type="Tables" /><EntitySet Name="ScoreList" EntityType="Self.ScoreList" Schema="dbo" store:Type="Tables" /><EntitySet Name="StudentClass" EntityType="Self.StudentClass" Schema="dbo" store:Type="Tables" /><EntitySet Name="Students" EntityType="Self.Students" Schema="dbo" store:Type="Tables" /><AssociationSet Name="fk_classId" Association="Self.fk_classId"><End Role="StudentClass" EntitySet="StudentClass" /><End Role="Students" EntitySet="Students" /></AssociationSet><AssociationSet Name="fk_StudentId" Association="Self.fk_StudentId"><End Role="Students" EntitySet="Students" /><End Role="ScoreList" EntitySet="ScoreList" /></AssociationSet></EntityContainer></Schema></edmx:StorageModels>

CSDL: 概念架构定义语言。概念模型对应的实体类,用实体类表示数据库中的对象。

<!-- CSDL content --><edmx:ConceptualModels><Schema Namespace="EFDBModel" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm"><EntityType Name="Admins"><Key><PropertyRef Name="LoginId" /></Key><Property Name="LoginId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" /><Property Name="LoginPwd" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" /><Property Name="AdminName" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" /></EntityType><EntityType Name="ScoreList"><Key><PropertyRef Name="Id" /></Key><Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" /><Property Name="StudentId" Type="Int32" Nullable="false" /><Property Name="CSharp" Type="Int32" /><Property Name="SQLServerDB" Type="Int32" /><Property Name="UpdateTime" Type="DateTime" Nullable="false" Precision="0" /><NavigationProperty Name="Students" Relationship="Self.fk_StudentId" FromRole="ScoreList" ToRole="Students" /></EntityType><EntityType Name="StudentClass"><Key><PropertyRef Name="ClassId" /></Key><Property Name="ClassId" Type="Int32" Nullable="false" /><Property Name="ClassName" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" /><NavigationProperty Name="Students" Relationship="Self.fk_classId" FromRole="StudentClass" ToRole="Students" /></EntityType><EntityType Name="Students"><Key><PropertyRef Name="StudentId" /></Key><Property Name="StudentId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" /><Property Name="StudentName" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" /><Property Name="Gender" Type="String" MaxLength="2" FixedLength="true" Unicode="false" Nullable="false" /><Property Name="Birthday" Type="DateTime" Nullable="false" Precision="0" /><Property Name="StudentIdNo" Type="Decimal" Precision="18" Scale="0" Nullable="false" /><Property Name="Age" Type="Int32" Nullable="false" /><Property Name="PhoneNumber" Type="String" MaxLength="50" FixedLength="false" Unicode="false" /><Property Name="StudentAddress" Type="String" MaxLength="500" FixedLength="false" Unicode="false" /><Property Name="ClassId" Type="Int32" Nullable="false" /><NavigationProperty Name="ScoreList" Relationship="Self.fk_StudentId" FromRole="Students" ToRole="ScoreList" /><NavigationProperty Name="StudentClass" Relationship="Self.fk_classId" FromRole="Students" ToRole="StudentClass" /></EntityType><Association Name="fk_StudentId"><End Role="Students" Type="Self.Students" Multiplicity="1" /><End Role="ScoreList" Type="Self.ScoreList" Multiplicity="*" /><ReferentialConstraint><Principal Role="Students"><PropertyRef Name="StudentId" /></Principal><Dependent Role="ScoreList"><PropertyRef Name="StudentId" /></Dependent></ReferentialConstraint></Association><Association Name="fk_classId"><End Role="StudentClass" Type="Self.StudentClass" Multiplicity="1" /><End Role="Students" Type="Self.Students" Multiplicity="*" /><ReferentialConstraint><Principal Role="StudentClass"><PropertyRef Name="ClassId" /></Principal><Dependent Role="Students"><PropertyRef Name="ClassId" /></Dependent></ReferentialConstraint></Association><EntityContainer Name="EFDBEntities" annotation:LazyLoadingEnabled="true"><EntitySet Name="Admins" EntityType="Self.Admins" /><EntitySet Name="ScoreList" EntityType="Self.ScoreList" /><EntitySet Name="StudentClass" EntityType="Self.StudentClass" /><EntitySet Name="Students" EntityType="Self.Students" /><AssociationSet Name="fk_StudentId" Association="Self.fk_StudentId"><End Role="Students" EntitySet="Students" /><End Role="ScoreList" EntitySet="ScoreList" /></AssociationSet><AssociationSet Name="fk_classId" Association="Self.fk_classId"><End Role="StudentClass" EntitySet="StudentClass" /><End Role="Students" EntitySet="Students" /></AssociationSet></EntityContainer></Schema></edmx:ConceptualModels>

MSL:  映射规范语言。 将存储模型中字段与概念模型中的属性对应。

  <!-- C-S mapping content --><edmx:Mappings><Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs"><EntityContainerMapping StorageEntityContainer="EFDBModelStoreContainer" CdmEntityContainer="EFDBEntities"><EntitySetMapping Name="Admins"><EntityTypeMapping TypeName="EFDBModel.Admins"><MappingFragment StoreEntitySet="Admins"><ScalarProperty Name="LoginId" ColumnName="LoginId" /><ScalarProperty Name="LoginPwd" ColumnName="LoginPwd" /><ScalarProperty Name="AdminName" ColumnName="AdminName" /></MappingFragment></EntityTypeMapping></EntitySetMapping><EntitySetMapping Name="ScoreList"><EntityTypeMapping TypeName="EFDBModel.ScoreList"><MappingFragment StoreEntitySet="ScoreList"><ScalarProperty Name="Id" ColumnName="Id" /><ScalarProperty Name="StudentId" ColumnName="StudentId" /><ScalarProperty Name="CSharp" ColumnName="CSharp" /><ScalarProperty Name="SQLServerDB" ColumnName="SQLServerDB" /><ScalarProperty Name="UpdateTime" ColumnName="UpdateTime" /></MappingFragment></EntityTypeMapping></EntitySetMapping><EntitySetMapping Name="StudentClass"><EntityTypeMapping TypeName="EFDBModel.StudentClass"><MappingFragment StoreEntitySet="StudentClass"><ScalarProperty Name="ClassId" ColumnName="ClassId" /><ScalarProperty Name="ClassName" ColumnName="ClassName" /></MappingFragment></EntityTypeMapping></EntitySetMapping><EntitySetMapping Name="Students"><EntityTypeMapping TypeName="EFDBModel.Students"><MappingFragment StoreEntitySet="Students"><ScalarProperty Name="StudentId" ColumnName="StudentId" /><ScalarProperty Name="StudentName" ColumnName="StudentName" /><ScalarProperty Name="Gender" ColumnName="Gender" /><ScalarProperty Name="Birthday" ColumnName="Birthday" /><ScalarProperty Name="StudentIdNo" ColumnName="StudentIdNo" /><ScalarProperty Name="Age" ColumnName="Age" /><ScalarProperty Name="PhoneNumber" ColumnName="PhoneNumber" /><ScalarProperty Name="StudentAddress" ColumnName="StudentAddress" /><ScalarProperty Name="ClassId" ColumnName="ClassId" /></MappingFragment></EntityTypeMapping></EntitySetMapping></EntityContainerMapping></Mapping></edmx:Mappings></edmx:Runtime>

3,规范函数。

        EDM配合Linq查询语言使用,但是因为EDM中的Linq查询语言最终由Ado.net Provider编译为SQL语句,限制了EDM只能使用部分规范的方法。

  • 可使用的规范函数。
System.String 静态方法 Concat(),Equals(),IsNullOrEmpty()等System.String 实例方法 Contains(),EndsWith(),StartsWith(),Replace()等DataTime 静态方法DataTime 实例方法Math静态方法Guid静态方法

例如:

context.Students.Where(t => t.StudentName.StartsWith("张"));
//被provider翻译为:
SELECT [Extent1].[StudentId] AS [StudentId], [Extent1].[StudentName] AS [StudentName], [Extent1].[Gender] AS [Gender], [Extent1].[Birthday] AS [Birthday], [Extent1].[StudentIdNo] AS [StudentIdNo], [Extent1].[Age] AS [Age], [Extent1].[PhoneNumber] AS [PhoneNumber], [Extent1].[StudentAddress] AS [StudentAddress], [Extent1].[ClassId] AS [ClassId]FROM [dbo].[Students] AS [Extent1]WHERE [Extent1].[StudentName] LIKE '张%'//如果是使用非规范函数的正则表达式,则抛出异常:
//其他信息: LINQ to Entities 不识别方法“Boolean IsMatch(System.String, System.String)”,因//此该方法无法转换为存储表达式。),因无法转译为SQL语句
context.Students.Where(t => System.Text.RegularExpressions.Regex.IsMatch(t.StudentName, "^张.*"));//抛出异常

4,查看Linq转换成的SQL语句。

        查询表达式.ToString()即可查看转换SQL语句。需要注意的是Linq查询是延迟查询,即使用时才进行查询。

5,数据的增删改查。

使用的数据

5.1,数据查询

MyDbContext context = new MyDbContext();
//普通查询
var result = context.Students.Where(s => s.StudentId > 100004);
Students ss=   context.Students.Find(100004);//多表联合查询
var arr=   from a in context.ScoreList where a.StudentId>=100004select new{a.StudentId,a.SQLServerDB,a.Students.StudentName,a.Students.StudentClass.ClassName};

5.2,数据插入

 MyDbContext context = new MyDbContext();
//添加方式Students s = new Students{Age = 23,Birthday = DateTime.Parse("2001/4/23"),Gender = "女",PhoneNumber = "1234567",StudentAddress = "湖北武汉",StudentIdNo = 123456789987654321,StudentName = "李欣",ClassId = context.StudentClass.FirstOrDefault(t => t.ClassName.Equals("网络1班")).ClassId};context.Students.Add(s);context.SaveChanges();//方式2
s.StudentIdNo = 123456789987654322;context.Entry(s).State = System.Data.Entity.EntityState.Added;context.SaveChanges();
//方式3Students stu = new Students{StudentId = 100010,Age = 20,Birthday = DateTime.Parse("1998/7/23"),Gender = "女",PhoneNumber = "13232224242",StudentIdNo = 111111110111111118,StudentAddress = "广东东莞",StudentName = "张三",};//注意这里无需指明classId//这里获取StudentClass对象,该对象包含了classId同时也包含了导航属性students(导航属性students中的Studentid均相同,主外键一对多的关系)
(from c in context.StudentClass where c.ClassName.Equals("计算机2班") select c).FirstOrDefault().Students.Add(stu);
context.SaveChanges();

5.3,数据更新

//方式1
Students stu = context.Students.Find(100014);
stu.StudentName = "李2新";
context.SaveChanges();
//方式2
Students stu2 = new Students
{Age = 23,Birthday = DateTime.Parse("2001/4/23"),Gender = "女",PhoneNumber = "1234567",StudentAddress = "湖北武汉",StudentIdNo = 123456789987654323,StudentName = "李欣",ClassId = context.StudentClass.FirstOrDefault(t => t.ClassName.Equals("网络1班")).ClassId,
StudentId = 100015
};context.Entry(stu2).State = System.Data.Entity.EntityState.Modified;
context.SaveChanges();

5.4,数据删除

//方法1,查询出对象再删除Students stu1 = context.Students.Find(100014);context.Students.Remove(stu1);context.SaveChanges();
//方法2,创建对象直接删除Students stu2 = new Students { StudentId = 100013 };context.Entry(stu2).State = System.Data.Entity.EntityState.Deleted;context.SaveChanges();
//方法3,创建对象附加后再删除Students stu3 = new Students { StudentId = 100011 };context.Students.Attach(stu3);context.Students.Remove(stu3);context.SaveChanges();
//方法4Students stu3 = new Students { StudentId = 100011 };context.Entry(stu3).State = System.Data.Entity.EntityState.Unchanged;context.Students.Remove(stu3);context.SaveChanges();

6,使用SQL语句

6.1,无结果集返回时

            //增加string sqlcmd = "insert into StudentClass (ClassId,ClassName) values (7,\'软件10班\')";//删除string sqlcmd2 = "delete from StudentClass where ClassId>=7";context.Database.ExecuteSqlCommand(sqlcmd);

6.2,有结果集返回值时

 var arr = context.Database.SqlQuery<StudentClass>("select * from StudentClass");foreach (var item in arr){Console.WriteLine(item.ClassId + "\t" + item.ClassName);}

6.3,调用存储过程

6.3.1,定义存储过程
--存储过程1if exists(select * from sysobjects where name='ups_procUpate')drop proc ups_procUpategocreate proc ups_procUpate@studentName nvarchar(50),@id int = 100004asupdate Students set StudentName=@studentName where StudentId=@idgo--存储过程2 if exists(select * from sysobjects where name ='ups_procRead')drop proc ups_procReadgocreate proc ups_procRead @id intasselect * from Students where StudentId>=@idgo
6.3.2,调用存储过程
 //调用存储过程context.Database.ExecuteSqlCommand("exec  ups_procUpate '猪八戒',100005");
//调用带参数的存储过程System.Data.SqlClient.SqlParameter[] paras = new System.Data.SqlClient.SqlParameter[]{new System.Data.SqlClient.SqlParameter("@studentName","牛魔王"),new System.Data.SqlClient.SqlParameter("@id",100006)};context.Database.ExecuteSqlCommand("exec ups_procUpate @studentName,@id ", paras);
//调用具有查询结果的存储过程var collect = context.Database.SqlQuery<Students>("exec ups_procRead 100004");foreach (var item in collect){Console.WriteLine(item.StudentId + "\t" + item.StudentName);}

7,EF性能优化。

7.1,状态说明

EntityState
状态		    整数值		说明		            具备该状态的对象Detached 	1	    对象存在但未被跟踪	    新创建的对象UNchanged	2	    对象尚未经过修改	        使用DbContext读取的对象使用Attach()方法添加的对象执行SaveChange()后的对象Added		4	    对象为新对象,并已添加	    使用Add()方法添加的对象到上下文中Deleted		8	    对象已从上下文中删除	    使用Remove()移除对象	

7.2,优化方法

        使用AsNoTracing()方法

        不进行状态跟踪添加AsNoTracing()方法后,对象将不被状态管理,查询性能提高返回的实体将不再DbContext中缓存只适合纯粹的查询操作。

//默认状态跟踪Students stu = (from a in context.Students where a.StudentId.Equals(100004) select a).FirstOrDefault();Console.WriteLine("该Student状态:{0}", context.Entry(stu).State);//不进行状态跟踪Students stu2 = context.Students.AsNoTracking().FirstOrDefault(a => a.StudentId.Equals(100004));Console.WriteLine("该Student状态:{0}", context.Entry(stu2).State);

        禁用自动跟踪(默认开启)DbContext.Configuration.AutoDetectChangesEnabled = false;

        关闭前,当执行Add()操作时耗费大量的性能,导致DbContext遍历所有缓存的Entity,比较原始值和当前值,非常耗时。
        关闭后使用Add()告知DbContext变化即可,如果是删除使用Remove()方法,以及通过State属性告知变化。
        适合于大批量操作数据(添加,删除,修改)

 System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch();Console.WriteLine("启用状态自动跟踪");context.Configuration.AutoDetectChangesEnabled = true;for (int i = 17; i < 27; i++){Console.WriteLine("第{0}次", i);StudentClass sc = new StudentClass { ClassName = $"网络{i}班", ClassId = i };Console.WriteLine("\t添加之前状态:{0}", context.Entry(sc).State);context.StudentClass.Add(sc);Console.WriteLine("\t添加之后状态:{0}", context.Entry(sc).State);}context.SaveChanges();Console.WriteLine("耗时:{0}", watch.Elapsed);Console.WriteLine("禁用状态自动跟踪");context.Configuration.AutoDetectChangesEnabled = false;watch.Restart();for (int i = 27; i < 37; i++){Console.WriteLine("第{0}次", i);StudentClass sc = new StudentClass { ClassName = $"网络{i}班", ClassId = i };Console.WriteLine("\t添加之前状态:{0}", context.Entry(sc).State);context.StudentClass.Add(sc);Console.WriteLine("\t添加之后状态:{0}", context.Entry(sc).State);}context.SaveChanges();Console.WriteLine("耗时:{0}", watch.Elapsed);

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/851483.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

# RocketMQ 实战:模拟电商网站场景综合案例(六)

RocketMQ 实战&#xff1a;模拟电商网站场景综合案例&#xff08;六&#xff09; 一、RocketMQ 实战 &#xff1a;项目公共类介绍 1、ID 生成器 &#xff1a;IDWorker&#xff1a;Twitter 雪花算法。 在 shop-common 工程模块中&#xff0c;IDWorker.java 是 ID 生成器公共类…

前端加载 动画特效

效果图: 完整代码: <!DOCTYPE html> <html> <head><meta charset="UTF-8" /><title>加载动画</title><style type="text/css">/* 设置页面背景颜色 */body {background: #ECF0F1;}/* 定义加载动画容器的样式…

【SQL边干边学系列】05高级问题

文章目录 前言回顾高级问题32.高价值客户33.高价值的客户-总订单数34.高价值的客户-带有折扣35.月末订单36.具有许多详细信息行的订单 答案32.高价值客户33.高价值的客户-总订单数34.高价值的客户-带有折扣35.月末订单36.具有许多详细信息行的订单 未完待续 前言 该系列教程&am…

新品发布 | 捷云等保一体机2.0全新上市,助力中小企业破解等保难题

等保2.0时代&#xff0c;随着网络威胁不断复杂化和组织化&#xff0c;作为网络安全“弱势群体”的中小企业&#xff0c;等保建设工作正面临着安全意识、管理、人才、资金捉襟见肘等问题&#xff0c;主要体现在以下两个方面&#xff1a; 等保建设流程复杂 中小企事业单位缺乏专…

jvm学习笔记(二) ----- 垃圾回收

GC 一、判定对象是否是垃圾1.引用计数法2.可达性分析算法 二、垃圾回收算法1.标记清除2.标记整理3. 复制4. 分代垃圾回收1.尝试在伊甸园分配2.大对象直接晋升至老年代3.多次存活的对象4.老年代连续空间不足&#xff0c;触发 Full GC 链接: jvm学习笔记(一) ----- JAVA 内存 链接…

解析智慧机场系统的架构与未来发展趋势

在全球航空业快速发展的背景下&#xff0c;智慧机场系统已经成为提升机场运营效率、优化旅客体验的重要手段。智慧机场系统的架构设计涵盖了多个方面&#xff0c;从航班管理到安全检查&#xff0c;从旅客服务到数据分析&#xff0c;都有着精心设计和完善的技术支持。本文将深入…

Apipost安装教程

&#x1f4d6;Apipost安装教程 ✅1. 下载✅2. 安装 ✅1. 下载 官网地址&#xff1a;https://www.apipost.cn/ 选择免费版&#xff0c;下载对应系统的安装包即可。 ✅2. 安装 1.点击运行apipost_win_x64_8.0.11.exe安装包&#xff0c;并选择用户安装&#xff0c;下一步 2.选…

【Kubernetes】Ingress 对外服务、ingress-controlle

Ingress 简介 service的作用体现在两个方面&#xff1a; 对集群内部&#xff0c;它不断跟踪pod的变化&#xff0c;更新endpoint中对应pod的对象&#xff0c;提供了ip不断变化的pod的服务发现机制&#xff1b; 对集群外部&#xff0c;他类似负载均衡器&#xff0c;可以在集群内…

如何评估pcdn调度算法的优化效果(壹)

评估PCDN&#xff08;Peer-assisted Content Delivery Network&#xff0c;对等网络内容分发网络&#xff09;调度算法的优化效果是一个综合且系统的过程&#xff0c;涉及多个维度的考量。以下是一些建议的步骤和考量因素&#xff0c;以便全面评估优化效果&#xff1a; 一&…

服务部署:解决Docker容器与虚拟机主机之间MySql连接访问问题

一、场景&#xff1a; 虚拟机上Ubuntu系统安装了Mysql&#xff0c;现在有一个服务应用需要使用docker来部署&#xff0c;服务应用需要连接mysql做数据库基础使用&#xff0c;配置文件中配置了虚拟主机的IP和端口&#xff0c;但是还是无法连接到Mysql&#xff0c;报错无法连接超…

stm32MP135裸机编程:修改基于SD卡的FSBL-A用户程序引导程序(boot)

0 参考资料 轻松使用STM32MP13x - 如MCU般在cortex A核上裸跑应用程序.pdf stm32mp135官方开发板原理图&#xff08;mb1635-bdp-v1-0.zip&#xff09; STM32Cube_FW_MP13_V1.0.0 STM32CubeIDE v1.15 1 为什么需要修改FSBL-A用户程序引导程序 FSBL-A用户程序引导程序的作用在《…

03-240605-Spark笔记

03-240605 1. 行动算子-1 reduce 聚合 格式: def reduce(f: (T, T) > T): T 例子&#xff1a; val sparkConf new SparkConf().setMaster("local[*]").setAppName("Operator")val sc new SparkContext(sparkConf) ​val rdd sc.makeRDD(List(1…

基础IO (Linux文件操作)

目录 1.文件操作 2.文件描述符 3.缓冲区 4.系统的缓冲区 1.文件操作 在C语言学习中&#xff0c;我们就已经使用了一些文件操作相关的接口&#xff0c;在学习IO之前&#xff0c;我们首先要复习一些以前讲过的概念&#xff0c; 1. 空文件也要在磁盘中占用空间&#xff0c;因为…

OBS 录屏软件 for Mac 视频录制和视频实时交流软件 安装

Mac分享吧 文章目录 效果一、准备工作二、开始安装注意事项&#xff1a;包内有两个版本及圆形图片&#xff0c;请根据自身需要版本进行安装演示为&#xff1a;MacBook Pro M3芯片1、双击运行软件&#xff0c;将其从左侧拖入右侧文件夹中&#xff08;最终目的&#xff1a;安装进…

python教程

python解释器的安装 https://www.python.org/ftp/python/3.12.4/python-3.12.4-amd64.exe jetbrains官网 英文 PyCharm 专业的版本 Thank you for downloading PyCharm! 社区 Thank you for downloading PyCharm! 中文 PyCharm 专业的版本 感谢您下载PyCharm&#xff01…

[大模型]GLM-4-9B-Chat WebDemo 部署

环境准备 在autodl平台中租一个4090等24G显存的显卡机器&#xff0c;如下图所示镜像选择PyTorch–>2.1.0–>3.10(ubuntu22.04)–>12.1 接下来打开刚刚租用服务器的JupyterLab&#xff0c; 图像 并且打开其中的终端开始环境配置、模型下载和运行演示。 pip换源和安装…

【图论应用】使用多路图(multigraph)对上海地铁站点图建模,并解决最短路径问题

文章目录 1 前言2 导包导入数据集3 创建多路图&#xff0c;导入节点和边信息3 绘制线路图4 计算最短路径 1 前言 最近正在学习图神经网络&#xff0c;先pick up了一些最基础的图论知识并学习了一些好玩的应用。 本文启发于B站视频&#xff08;BV1LY411R7HJ&#xff09;&#…

【python】flask 框架

python flask 框架 flask是一个轻量级的python后端框架 (Django, tornado, flask) 官网&#xff1a;欢迎来到 Flask 的世界 — Flask中文文档(3.0.x) 安装&#xff1a;pip install Flask -i https://pypi.douban.com 常识&#xff1a; http,默认端口号为80; https,默认端口号…

国资e学快速学习实战教程

大家好,我是爱编程的喵喵。双985硕士毕业,现担任全栈工程师一职,热衷于将数据思维应用到工作与生活中。从事机器学习以及相关的前后端开发工作。曾在阿里云、科大讯飞、CCF等比赛获得多次Top名次。现为CSDN博客专家、人工智能领域优质创作者。喜欢通过博客创作的方式对所学的…

OSPF LSA头部详解

LSA概述 LSA是OSPF的本质 , 对于网工来说能否完成OSPF的排错就是基于OSPF的LSDB掌握程度 . 其中1/2类LAS是负责区域内部的 类似于设备的直连路由 . 加上对端的设备信息 3 类LSA是区域间的 指的是Area0和其他Area的区域间关系 , 设计多区域的初衷就是避免大型OSPF环境LSA太多…