• 大小: 2.37M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: MySql  sql  c  .NET  Migrations  

资源简介

麻雀虽小,五脏俱全,很经典

操作步骤:

1. 修改下 appsetting.json文件中的MySqlConnection 为你本机的 mysql账号密码

2. 运行webapi项目 即可看到 输出的webapi

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;

namespace ASP.Net_Core_API
{
    public class Program
    {
        public static void Main(string[] args)
        {
            BuildWebHost(args).Run();
        }

        public static IWebHost BuildWebHost(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .UseStartup()
                .Build();
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-04 22:31  DotNetCore\
     目录           0  2018-04-04 22:31  DotNetCore\.vs\
     目录           0  2018-04-04 22:31  DotNetCore\.vs\DotNetCore\
     目录           0  2018-04-04 22:32  DotNetCore\.vs\DotNetCore\v15\
     文件      118272  2018-04-05 00:37  DotNetCore\.vs\DotNetCore\v15\.suo
     目录           0  2018-04-04 22:32  DotNetCore\.vs\DotNetCore\v15\Server\
     目录           0  2018-04-05 00:37  DotNetCore\.vs\DotNetCore\v15\Server\sqlite3\
     文件           0  2018-04-04 22:32  DotNetCore\.vs\DotNetCore\v15\Server\sqlite3\db.lock
     文件     1970176  2018-04-05 00:37  DotNetCore\.vs\DotNetCore\v15\Server\sqlite3\storage.ide
     目录           0  2018-04-05 00:37  DotNetCore\.vs\DotNetCore\v15\sqlite3\
     文件           0  2018-04-04 22:32  DotNetCore\.vs\DotNetCore\v15\sqlite3\db.lock
     文件     5525504  2018-04-05 00:37  DotNetCore\.vs\DotNetCore\v15\sqlite3\storage.ide
     目录           0  2018-04-05 00:33  DotNetCore\ASP.Net Core API\
     文件         614  2017-09-20 09:08  DotNetCore\ASP.Net Core API\ASP.Net Core API.csproj
     文件         398  2017-09-20 09:10  DotNetCore\ASP.Net Core API\ASP.Net Core API.csproj.user
     目录           0  2018-04-04 22:31  DotNetCore\ASP.Net Core API\Controllers\
     文件         949  2017-09-20 09:12  DotNetCore\ASP.Net Core API\Controllers\ValuesController.cs
     文件         633  2017-09-20 09:04  DotNetCore\ASP.Net Core API\Program.cs
     目录           0  2018-04-04 22:31  DotNetCore\ASP.Net Core API\Properties\
     文件         724  2017-09-20 09:04  DotNetCore\ASP.Net Core API\Properties\launchSettings.json
     文件        1643  2018-04-05 00:33  DotNetCore\ASP.Net Core API\Startup.cs
     文件         178  2017-09-20 09:04  DotNetCore\ASP.Net Core API\appsettings.Development.json
     文件         387  2018-04-04 22:40  DotNetCore\ASP.Net Core API\appsettings.json
     目录           0  2018-04-04 22:31  DotNetCore\ASP.Net Core API\bin\
     目录           0  2018-04-04 22:31  DotNetCore\ASP.Net Core API\bin\Debug\
     目录           0  2018-04-04 22:31  DotNetCore\ASP.Net Core API\bin\Debug\netcoreapp2.0\
     文件      271423  2018-04-04 22:41  DotNetCore\ASP.Net Core API\bin\Debug\netcoreapp2.0\ASP.Net Core API.deps.json
     文件        8192  2018-04-05 00:29  DotNetCore\ASP.Net Core API\bin\Debug\netcoreapp2.0\ASP.Net Core API.dll
     文件        1680  2018-04-05 00:29  DotNetCore\ASP.Net Core API\bin\Debug\netcoreapp2.0\ASP.Net Core API.pdb
     文件         252  2018-04-04 22:41  DotNetCore\ASP.Net Core API\bin\Debug\netcoreapp2.0\ASP.Net Core API.runtimeconfig.dev.json
     文件         221  2018-04-04 22:41  DotNetCore\ASP.Net Core API\bin\Debug\netcoreapp2.0\ASP.Net Core API.runtimeconfig.json
............此处省略109个文件信息

评论

共有 条评论