滴水静禅天
扫描关注滴水静禅天

扫码加微信:-)

AspNetCore Web Project Common Command

滴水静禅天2019-12-30杂七杂八 1222
  1. 配置连接字符串=>appsettings.json

"Data": {
"SportStoreProducts": {
"ConnectionString": "Server=[数据库主机名];Database=[你的数据库名];Trusted_Connection=True;MultipleActiveResultSets=true;Integrated Security=True"
}
}


2.注册dotnet依赖项 =>Proj file

<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet"  Version="2.0.0" />


3.初始商品数据:

new Product {
Name = "Kayak", Description = "A boat for one person",
Category = "Watersports", Price = 275 },
new Product {
Name = "Lifejacket",
Description = "Protective and fashionable",
Category = "Watersports", Price = 48.95m },
new Product {
Name = "Soccer Ball",
Description = "FIFA-approved size and weight",
Category = "Soccer", Price = 19.50m },
new Product {
Name = "Corner Flags",
Description = "Give your playing field a professional touch",
Category = "Soccer", Price = 34.95m },
new Product {
Name = "Stadium",
Description = "Flat-packed 35,000-seat stadium",
Category = "Soccer", Price = 79500 },
new Product {
Name = "Thinking Cap",
Description = "Improve brain efficiency by 75%",
Category = "Chess", Price = 16 },
new Product {
Name = "Unsteady Chair",
Description = "Secretly give your opponent a disadvantage",
Category = "Chess", Price = 29.95m },
new Product {
Name = "Human Chess Board",
Description = "A fun game for the family",
Category = "Chess", Price = 75 },
new Product {
Name = "Bling-Bling King",
Description = "Gold-plated, diamond-studded King",
Category = "Chess", Price = 1200
}



发表评论