C#中.NET 6.0控制台应用通过EF访问已建数据库

目录

[一、新建.NET 6.0控制台应用并建立数据库连接](#一、新建.NET 6.0控制台应用并建立数据库连接)

二、下载并安装EF程序包

三、自动生成EF模型和上下文

1.Blog类模型

2.Post类模型

3.数据库上下文

四、设计自己的应用


VS2022的.NET6.0、.NET7.0框架下默认支持EF7(版本号7.0.13),除非需要没有必要降低版本使用。

一、新建.NET 6.0控制台应用并建立数据库连接

新建.NET 6.0控制台应用,并连接数据库。

cs 复制代码
"Server=DESKTOP-3LV13FS;Database=Blogging;Trusted_Connection=True;TrustServerCertificate=true;integrated security=SSPI;" 

为避免 (provider: SSL Provider, error: 0 - 证书链是由不受信任的颁发机构颁发的。)增加连接字符串"TrustServerCertificate=true;"。

二、下载并安装EF程序包

因为版本号很新,因此可以通过右侧资源管理器、依赖项、右键、管理NuGet程序包、搜索EF,安装如下程序包:

也可以按照前文介绍的方法安装程序包。

三、自动生成EF模型和上下文

cs 复制代码
PM> Scaffold-DbContext "Server=DESKTOP-3LV13FS;Database=Blogging;Trusted_Connection=True;TrustServerCertificate=true;integrated security=SSPI;" Microsoft.EntityFrameworkCore.SqlServer

右侧资源管理器自动生成与映射到了数据库的Blog.cs类的模型、Post.cs类的模型(数据库有几个列,就自动生成几个类的模型),和BloggingContext.cs数据库上下文。此处有两点需要注意:第一,程序包管理控制台必须没有任何警告,但可以有类似如下内容的建议。第二,EF模型和上下文是自动生成的,倘若右侧的资源管理器里没有自动生成EF模型和上下文,那么这一步之前(含)一定有操作错误的地方,修改过后重试。

PM> Scaffold-DbContext "Server=DESKTOP-3LV13FS;Database=Blogging;Trusted_Connection=True;TrustServerCertificate=true;integrated security=SSPI;" Microsoft.EntityFrameworkCore.SqlServer

Build started...

Build succeeded.

To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see http://go.microsoft.com/fwlink/?LinkId=723263.

为了保护连接字符串中潜在的敏感信息,您应该将其从源代码中移出。您可以使用 Name= 语法从配置中读取连接字符串,从而避免搭建连接字符串 - 请参阅 https://go.microsoft.com/fwlink/?linkid=2131148。有关存储连接字符串的更多指南,请参阅 http://go.microsoft.com/fwlink/?LinkId=723263。

1.Blog类模型

cs 复制代码
//Blog类模型
using System;
using System.Collections.Generic;

namespace _10_9;
public partial class Blog
{
    public int BlogId { get; set; }
    public string Url { get; set; } = null!;
    public virtual ICollection<Post> Posts { get; set; } = new List<Post>();
}

2.Post类模型

cs 复制代码
//Post类模型
using System;
using System.Collections.Generic;

namespace _10_9;
public partial class Post
{
    public int PostId { get; set; }
    public int BlogId { get; set; }
    public string? Content { get; set; }
    public string? Title { get; set; }
    public virtual Blog Blog { get; set; } = null!;
}

3.数据库上下文

cs 复制代码
//EF实体,数据库上下文
using Microsoft.EntityFrameworkCore;

namespace _10_9;
public partial class BloggingContext : DbContext
{
    public BloggingContext()
    {
    }

    public BloggingContext(DbContextOptions<BloggingContext> options)
        : base(options)
    {
    }

    public virtual DbSet<Blog> Blogs { get; set; }
    public virtual DbSet<Post> Posts { get; set; }

    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see http://go.microsoft.com/fwlink/?LinkId=723263.
        => optionsBuilder.UseSqlServer("Server=DESKTOP-3LV13FS;Database=Blogging;Trusted_Connection=True;TrustServerCertificate=true;integrated security=SSPI;");

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        modelBuilder.Entity<Blog>(entity =>
        {
            entity.ToTable("Blog");
        });

        modelBuilder.Entity<Post>(entity =>
        {
            entity.ToTable("Post");
            entity.HasOne(d => d.Blog).WithMany(p => p.Posts).HasForeignKey(d => d.BlogId);
        });
        OnModelCreatingPartial(modelBuilder);
    }
    partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
}

四、设计自己的应用

现在就开始编写属于你的应用吧:通过应用程序,给Blog里增加一个新的网址,并输出到控制台。

cs 复制代码
// .NET 6.0通过EF7访问已有数据库的应用
using System;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore;

namespace _10_9
{
    class Program
    {
        static void Main(string[] args)
        {
            using var db = new BloggingContext();
            db.Blogs.Add(new Blog { Url = "http://blogs.msdn.com/adonet" });
            var count = db.SaveChanges();
            Console.WriteLine("{0} records saved to database", count);

            Console.WriteLine();
            Console.WriteLine("All blogs in database:");
            foreach (var _blog in db.Blogs)
            {
                Console.WriteLine(" - {0}", _blog.Url);
            }
        }
    }
}
//运行结果:
/*
1 records saved to database

All blogs in database:
 - http://blogs.msdn.com/dotnet
 - http://blogs.msdn.com/webdev
 - http://blogs.msdn.com/visualstudio
 - http://blogs.msdn.com/adonet
 - http://blogs.msdn.com/adonet
 - http://blogs.msdn.com/adonet

C:\Users\YCZN_MT\Desktop\测试1\10_9\10_9\bin\Debug\net6.0\10_9.exe (进程 25864)已退出,代码为 0。
按任意键关闭此窗口. . .*/
相关推荐
高兴就好(石2 小时前
DB-GPT部署和试用
数据库·gpt
这孩子叫逆3 小时前
6. 什么是MySQL的事务?如何在Java中使用Connection接口管理事务?
数据库·mysql
Karoku0663 小时前
【网站架构部署与优化】web服务与http协议
linux·运维·服务器·数据库·http·架构
码农郁郁久居人下3 小时前
Redis的配置与优化
数据库·redis·缓存
MuseLss4 小时前
Mycat搭建分库分表
数据库·mycat
Hsu_kk5 小时前
Redis 主从复制配置教程
数据库·redis·缓存
DieSnowK5 小时前
[Redis][环境配置]详细讲解
数据库·redis·分布式·缓存·环境配置·新手向·详细讲解
程序猿小D5 小时前
第二百三十五节 JPA教程 - JPA Lob列示例
java·数据库·windows·oracle·jdk·jpa
Flerken1015 小时前
数据库语言、SQL语言、数据库系统提供的两种语言
数据库·sql·oracle
掘根5 小时前
【网络】高级IO——poll版本TCP服务器
网络·数据库·sql·网络协议·tcp/ip·mysql·网络安全