C#之EntityFramework的应用

news2024/11/27 7:44:16

目录

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>=100004
             select 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();
//方式3
 Students 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();
//方法4
            Students 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,定义存储过程
--存储过程1
  if exists(select * from sysobjects where name='ups_procUpate')
      drop proc ups_procUpate
  go

  create proc ups_procUpate
     @studentName nvarchar(50),@id int = 100004
  as
      update Students set StudentName=@studentName where StudentId=@id
  go
 

 --存储过程2 
  if exists(select * from sysobjects where name ='ups_procRead')
      drop proc ups_procRead
  go

  create proc ups_procRead @id int
  as
	select * from Students where StudentId>=@id
  go
  
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.coloradmin.cn/o/1796750.html

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

相关文章

go语言接口之接口值

概念上讲一个接口的值&#xff0c;接口值&#xff0c;由两个部分组成&#xff0c;一个具体的类型和那个类型的值。它们 被称为接口的动态类型和动态值。对于像Go语言这种静态类型的语言&#xff0c;类型是编译期的概 念&#xff1b;因此一个类型不是一个值。在我们的概念模型中…

MySQL-权限管理(二)

一 host中的含义 /usr/local/mysql/bin/mysql -pLXYlxy2:024.#8u} -S /data/mysql/tmp/mysqld.sock select user,host,authentication_string from mysql.user; %:主要允许从任何主机连接到MySQL服务器&#xff0c;即外部连接localhost: 代表只允许本地主机连接到MySQL服务器&…

spring boot2.7.x遇到问题

validation报错 高版本已移除了validation以来&#xff0c;需手动添加 <dependency><groupId>jakarta.validation</groupId><artifactId>jakarta.validation-api</artifactId> </dependency>mybatis报错 升级版本 <dependency>&…

07-指针的概念与引用,索引

指针的概念与引用&#xff0c;索引 一、内存地址 字节&#xff1a; 定义&#xff1a; 字节&#xff08;byte&#xff09;是内存容量的一个单位&#xff0c;一个字节包含8个位&#xff08;bit&#xff09;。 地址&#xff1a; 定义&#xff1a; 内存地址是系统为了方便区分…

物流装备企业太多,恶性竞争,2024年的新出路在哪里?

导语 大家好&#xff0c;我是社长&#xff0c;老K。专注分享智能制造和智能仓储物流等内容。 新书《智能物流系统构成与技术实践》 之前写过一篇文章&#xff0c;关于中国有N多家物流装备企业&#xff0c;从列表中可猜测&#xff0c;行业内竞争惨烈。可以点击查看此篇 中国物流…

当代中国获奖的知名作家信息管理系统的设计

管理员账户功能包括&#xff1a;系统首页&#xff0c;个人中心&#xff0c;管理员管理&#xff0c;用户管理&#xff0c;作家管理&#xff0c;作品管理&#xff0c;论坛管理 前台账户功能包括&#xff1a;系统首页&#xff0c;个人中心&#xff0c;论坛&#xff0c;公告&#x…

上海亚商投顾:微盘股指数大跌超6% 全市场仅500余只个股上涨

上海亚商投顾前言&#xff1a;无惧大盘涨跌&#xff0c;解密龙虎榜资金&#xff0c;跟踪一线游资和机构资金动向&#xff0c;识别短期热点和强势个股。 一.市场情绪 沪指昨日震荡调整&#xff0c;创业板指午后一度跌超1%&#xff0c;微盘股指数盘中跌逾7%&#xff0c;小市值个…

HTML+CSS+JS 动态展开式菜单

效果演示 实现了一个可展开菜单按钮的效果,点击按钮会弹出一个菜单列表,菜单列表中包含多个选项。按钮的样式为一个圆形背景,中间有三条横线,表示可以展开。当按钮被点击后,三条横线会变成一个叉号,表示可以收起。菜单列表的样式为一个白色背景,四周有阴影,包含多个选项…

【JavaEE】Spring Boot 日志详解

一 日志概述 日志是用于记录系统运行状态、用户操作和重大事件的工具。 1.日志的用途 系统监控 监控现在几乎是一个成熟系统的标配, 我们可以通过日志记录这个系统的运行状态, 每⼀个方法的响应时间, 响应状态等, 对数据进行分析, 设置不同的规则, 超过阈值时进行报警. 比如统…

数据库资源评估:构建高效数据架构的基础

前言 这篇文章主要是描述在平时开发的过程中怎么进行合理的资源评估&#xff0c;包括数据量预估、用户行为建模、资源预估、资源预览等等。 存储架构设计三步骤 性能估算步骤 用户预估常见方式 用户行为建模 存储性能需求计算 存储性能需求计算案例 案例 用户行为模型:每天使…

【二进制部署k8s-1.29.4】十三、k8s的dashboard安装部署【完结】

文章目录 简介 一.kubernetes-dashboard-7.5.0的安装1.1 查看helm安装的参数1.2 安装命令 二.验证安装结果2.1.验证2.2.配置访问&#xff1a; 三.创建BearerToken来进行登录3.1.创建 ServiceAccount 和 Secret3.2.创建集群绑定3.3.查看token 四.登录注意事项 简介 本章节主要讲…

通过fiftyone按分类下载open-images-v7数据集,并转成yolov5可直接训练的格式

import osimport fiftyone as fo import fiftyone.zoo as foz import yamlclasses [Person, # 人 - 0Car, # 轿车 - 1Taxi, # 出租车 - 2Ambulance, # 救护车 - 3Bus, # 公共汽车 - 4Bicycle, # 自行车 - 5Motorcycle, # 摩托车 - 6Dog, # 狗 - 7Cat, # 猫 - 8M…

Django里的ModelForm组件

ModelForm组件 自动生成HTML标签 自动读取关联数据表单验证 错误提示数据库进行&#xff1a;新建&#xff0c;修改 步骤如下&#xff1a; 创建类 # 在 views.py 文件里# 创建一个类 class AssetModelForm(forms.ModelForm):class Meta:model models.AssetSet #fields [n…

Python Flask实现蓝图Blueprint配置和模块渲染

Python基础学习&#xff1a; Pyhton 语法基础Python 变量Python控制流Python 函数与类Python Exception处理Python 文件操作Python 日期与时间Python Socket的使用Python 模块Python 魔法方法与属性 Flask基础学习&#xff1a; Python中如何选择Web开发框架&#xff1f;Pyth…

《大道平渊》· 拾 —— 身心的“肥胖”与我们不知饥渴的病:追求中的丰盈与节制

《平渊》 拾 "水满则溢&#xff0c;月盈则亏。" 《道德经》有言&#xff1a;"水满则溢&#xff0c;月盈则亏"。 意思是&#xff1a;水满了就会溢出&#xff0c;月亮最圆的时候就会走向亏的状态。 这揭示了自然界和人类社会中一切事物的内在规律 —— 任…

经典算法 - 回溯法

文章目录 1. 基本概念2. 组合问题3. 组合总和Ⅲ4. 电话号码的字母组合5. 分割回文串6. 复原IP地址7. 子集8. 全排列9. 全排列Ⅱ10. N皇后11. 解数独 1. 基本概念 递归和回溯相辅相成。只要有递归&#xff0c;就会有回溯。 回溯法是一种纯暴力的搜索&#xff0c;并不是一种高效…

特征选择|模型解释|Pearson相关系数|JS散度|SHAP算法

文章目录 1 特征工程2 特征选择3 相关性分析3.1 皮尔逊相关系数3.2 皮尔逊相关系数 - python实现3.3 JS散度3.4 JS散度 - python实现 4 模型解释算法4.1 SHAP4.2 SHAP - python实现4.3 SHAP值解读4.4 SHAP 瀑布图4.5 SHAP 柱状图4.6 SHAP 蜂巢图4.7 SHAP其他图像形式4.7.1 单点…

selenium非全新的方式同时启动多个浏览器又互不影响的一种实现方法,欢迎讨论!

最近在做模拟浏览器批量定时自动点击实现批量操作功能&#xff0c;主要使用selenium&#xff0c;但是发现selenium直接调用本地浏览器&#xff0c;启动的是一个全新的&#xff08;与手动打开的不一致&#xff09;&#xff0c;网站可以检测到&#xff0c;每次都要双重验证(密码登…

Elasticsearch 管道查询语言 ES|QL 现已正式发布

作者&#xff1a;Costin Leau, George Kobar 今天&#xff0c;我们很高兴地宣布 ES|QL&#xff08;Elasticsearch 查询语言&#xff09;全面上市&#xff0c;这是一种从头开始设计的动态语言&#xff0c;用于转换、丰富和简化数据调查。在新的查询引擎的支持下&#xff0c;ES|Q…

14_Node.js和NPM入门指南

文章目录 NodeJS1.nodejs下载2.NPM的配置和使用3.NPM对一个项目进行初始化操作4.NPM本地仓库进行依赖下载5.查看当前项目有哪些依赖 https://www.npmjs.com/package NodeJS JS代码运行在哪里 1.浏览器2.nodejs 内置谷歌浏览器v8引擎 nodejs具有io磁盘 读写能力。类似java代码和…