zoukankan      html  css  js  c++  java
  • EF Core 搭建单侧环境

    有时候想搭个环境做测试, 又记不住那些 command, 官方教程又啰嗦. git clone 模板又不太好管理, 索性记入在这里吧.

    创建项目

    dotnet new webapp -o SimpleTestEFCore

    Install NuGet

    dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore

    dotnet add package Microsoft.EntityFrameworkCore.Design

    dotnet add package Microsoft.EntityFrameworkCore.SqlServer

    Files

    Product.cs

    namespace AzureGetStarted.Entity
    {
        public class Product
        {
            public int Id { get; set; }
            public string Name { get; set; } = "";
        }
    }

    ApplicationDbContext.cs

    using Microsoft.EntityFrameworkCore;
    
    namespace AzureGetStarted.Entity
    {
        public class ApplicationDbContext : DbContext
        {
            public ApplicationDbContext(
               DbContextOptions<ApplicationDbContext> options
            ) : base(options)
            {
            }
    
            public DbSet<Product> Products => Set<Product>();
            protected override void OnModelCreating(ModelBuilder modelBuilder)
            {
                modelBuilder.Entity<Product>().ToTable("Product");
                modelBuilder.Entity<Product>().Property(e => e.Name).HasMaxLength(256);
            }
        }
    }

    appsettings.json

    "ConnectionStrings": {
      "ApplicationDbContext": "Server=192.168.1.152;Database=AzureGetStarted;Trusted_Connection=True;MultipleActiveResultSets=true"
    }

    Startup.cs > ConfigureServices

    services.AddDbContext<ApplicationDbContext>(options =>
    {
        options.UseSqlServer(Configuration.GetConnectionString("ApplicationDbContext"));
    });

    cmd

    dotnet ef migrations add init
    dotnet ef database update

    Index.cshtml

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Threading.Tasks;
    using Microsoft.AspNetCore.Mvc;
    using Microsoft.AspNetCore.Mvc.RazorPages;
    using Microsoft.Extensions.Logging;
    using AzureGetStarted.Entity;
    using Microsoft.EntityFrameworkCore;
    
    namespace AzureGetStarted.Pages
    {
        public class IndexModel : PageModel
        {
            private readonly ILogger<IndexModel> _logger;
            private readonly ApplicationDbContext _db;
    
            public IndexModel(
                ILogger<IndexModel> logger,
                ApplicationDbContext Db
            )
            {
                _logger = logger;
                _db = Db;
            }
    
            public async Task OnGetAsync()
            {
                var products = await _db.Products.ToListAsync();
                _db.Products.Add(new Product { Name = "Product1" });
                await _db.SaveChangesAsync();
            }
        }
    }
  • 相关阅读:
    1.1、MyEclipse自定义注释
    angular2 组件内容嵌入(ng-content)
    常用css初始化样式(淘宝)
    web移动端rem的适配
    PSCC2019常用基础操作
    vs Code打开新的文件会覆盖窗口中的文件?
    关于将ECharts引入到项目中的几种方式
    VS code 设置侧边栏字体大小
    Visual Studio Code(VS code)你们都在用吗?或许你们需要看一下这篇博文
    Angular 监听滚动条事件
  • 原文地址:https://www.cnblogs.com/keatkeat/p/15047395.html
Copyright © 2011-2022 走看看