私はasp.netコア開発のために全く新しいです。私は単一のモデルとモデルデータを格納するための単純なasp.netコアのWeb APIを作成しようとしているし、おそらくSwaggerを使用してREST APIとして取得したいと思います。
私の現在の設定は次のようになります:
Books.cs:
using Microsoft.EntityFrameworkCore;
using MySQL.Data.EntityFrameworkCore.Extensions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace New_Api.Models
{
public class Book
{
public int Id { get; set; }
public string Name { get; set; }
public string Author { get; set; }
public decimal Price { get; set; }
public DateTime CreatedOn { get; set; } = DateTime.UtcNow;
}
public class WebAPIDataContext : DbContext
{
public WebAPIDataContext(DbContextOptions<WebAPIDataContext> options)
: base(options)
{
}
public DbSet<Book> Books { get; set; }
}
}
Project.json:
{
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.1",
"type": "platform"
},
"Microsoft.ApplicationInsights.AspNetCore": "1.0.0",
"Microsoft.AspNetCore.Mvc": "1.0.1",
"Microsoft.AspNetCore.Routing": "1.0.1",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.Logging": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",
"Microsoft.Extensions.Logging.Debug": "1.0.0",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
"Microsoft.EntityFrameworkCore": "1.0.0",
"MySql.Data.Core": "7.0.4-IR-191",
"MySql.Data.EntityFrameworkCore": "7.0.4-IR-191",
"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final"
},
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final"
},
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dotnet5.6",
"portable-net45+win8"
]
}
},
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
"runtimeOptions": {
"configProperties": {
"System.GC.Server": true
}
},
"publishOptions": {
"include": [
"wwwroot",
"**/*.cshtml",
"appsettings.json",
"web.config"
]
},
"scripts": {
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
}
}
appsettings.json:
{
"ConnectionStrings": {
"SampleConnection": "server=localhost;userid=root;pwd=root;port=3306;database=asptest;sslmode=none;"
},
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}
そして私のstartup.csでは:
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddApplicationInsightsTelemetry(Configuration);
services.AddDbContext<WebAPIDataContext>(options =>
{
options.UseMySQL("SampleConnection");
});
services.AddMvc();
}
この多くのセットアップの後、私はすべてのパッケージを復元し、実行されたdotnet ef migrations add initial
Migrationsフォルダを作成したdotnet ef migrations add initial
をdotnet ef migrations add initial
ます(これは成功したと思います)。その後私はエラーを与えているdotnet ef database update
を実行しました: Format of the initialization string does not conform to specification starting at index 0
何が間違っている?
ConfigureServicesメソッドのコードを次のように変更します。
services.AddDbContext<WebAPIDataContext>(options =>
options.UseMySQL(Configuration.GetConnectionString("SampleConnection"))
);
Configuration.GetConnectionString("SampleConnection")
は、接続文字列server = localhost; userid = root; pwd = root; port = 3306; database = asptest; sslmode = none;を返します。あなたはappsettings.jsonで設定しますoptions.UseMySQL("SampleConnection")
は、 リテラルなSampleConnectionを接続文字列として解釈しようとします。