Essential pro angular and asp.net core 笔记
1. dotnet ef相关命令
删除数据库(适合只有一个数据库的情形)
dotnet ef database drop --force
更新数据库(适合只有一个数据库的情形)
dotnet ef database update
如果多个数据库,则需更改:
首先,查看有哪些数据库context:
dotnet ef dbcontext list
> dotnet ef dbcontext list
info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[]
User profile is available. Using 'C:\Users\zte_pre\AppData\Local\ASP.NET\D
.......
dName]
FROM [AspNetRoles] AS [r]
WHERE [r].[NormalizedName] = @__normalizedName_0
SportsStore.Models.IdentityDataContext
SportsStore.Models.DataContext
在对具体的数据库进行操作:
dotnet ef database drop --force --context IdentityDataContext
和
dotnet ef database update --context IdentityDataContext
1.2 数据迁移
第一次是初始化:
dotnet ef migrations add Initial
随后开发的过程中增加表时,迁移是增加相应的表名:
dotnet ef migrations add ChangeDeleteBehavior
从多个数据库的话,要选择数据库上迁移建立表:
dotnet ef migrations list --context DataContext
dotnet ef migrations add Orders --context DataContext
如果发现迁移的表不正确,可以把Migrations目录下的相关的cs文件删除,如Orders发现数据库里设计的不对,重新migrate时,可以删除如下两个文件,重新运行迁移命令即可:
......\Migrations\20181015071529_Orders.cs
......\Migrations\20181015071529_Orders.Designer.cs
2 .appsetting
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Microsoft.EntityFrameworkCore": "Information",
"Microsoft.AspNetCore.NodeServices": "Information",
"Default": "Warning"
},
"Data": {
"Products": {
"ConnectionString": "Server=(localdb)\\MSSQLLocalDB;Database=SportsStoreAngular;Trusted_Connection=True;MultipleActiveResultSets=true"
}
}
}
}
dotnet sql-cache create "Data Source=(localdb)\MSSQLLocalDB;Database=SportsStoreAngular;Trusted_Connection=True;MultipleActiveResultSets=true" "dbo" "SessionData"
Trusted_Connection=True;这句不加,就出现了”管道的另一端上无任何进程“的错误,估计跟用户校验相关。
另外注意:
在有用户密码的数据库中,使用如下命令:
dotnet sql-cache create 'Data Source=localhost,1433;Database=SimpleGlossary;User Id=sa;password="dusf123SQL!";MultipleActiveResultSets=true' 'dbo' 'SessionData'
注意上面语句的单引号里面是双引号,主要是解决密码里有个!特殊字符,命令行不识别的问题
2.angular-cli创建MVC项目
dotnet new mvc --language C# --auth None --framework netcoreapp2. dotnet add package Microsoft.AspNetCore.SpaServices dotnet add package Microsoft.EntityFrameworkCore --version 1.1.
dotnet add package Microsoft.EntityFrameworkCore.Design --version 1.1.
dotnet add package Microsoft.EntityFrameworkCore.SqlServer --version 1.1.
3. npm的镜像替换成淘宝
1.得到原本的镜像地址
npm get registry
> https://registry.npmjs.org/
设成淘宝的
npm config set registry http://registry.npm.taobao.org/
yarn config set registry http://registry.npm.taobao.org/
2.换成原来的
npm config set registry https://registry.npmjs.org/
4.关于循环引用的问题
.
public Product GetProduct(long id) {
Product result = context.Products
.Include(p => p.Supplier)
.Include(p => p.Ratings)
.First(p => p.ProductId == id);
if (result != null) {
if (result.Supplier != null) {
result.Supplier.Products = null;
}
if (result.Ratings != null) {
foreach (Rating r in result.Ratings) {
r.Product = null;
}
}
}
return result;
} .
public Product GetProduct(long id) {
Product result = context.Products
.Include(p => p.Supplier).ThenInclude(s => s.Products)
.Include(p => p.Ratings)
.First(p => p.ProductId == id);
if (result != null) {
if (result.Supplier != null) {
result.Supplier.Products = result.Supplier.Products.Select(p =>
new Product {
ProductId = p.ProductId,
Name = p.Name,
Category = p.Category,
Description = p.Description,
Price = p.Price,
});
}
if (result.Ratings != null) {
foreach (Rating r in result.Ratings) {
r.Product = null;
}
}
}
return result;
}
}
上面11和22的代码区别是,22多了个ThenInclude(s => s.Products). Inlclude和ThenInclude都是表示让EF装载关联数据的。Include只关联和id相等的产品信息,即11中的Supllier的Products有多个product的话,只会关联出
productId和查询id一直的产品,并不会把所有的与该supplier关联的产品装载出来。与此对应的结果如下所示:
.
{
"productId":,"name":"Kayak","category":"Watersports",
"description":"A boat for one person","price":275.00,
"supplier":{
"supplierId":,"name":"Splash Dudes","city":"San Jose",
"state":"CA","products":null},
"ratings":[{"ratingId":,"stars":,"product":null},
{"ratingId":,"stars":,"product":null}]
} .
{
"productId":,"name":"Kayak","category":"Watersports",
"description":"A boat for one person","price":275.00,
"supplier":{"supplierId":,"name":"Splash Dudes","city":"San Jose",
"state":"CA",
"products":[
{ "productId":,"name":"Kayak","category":"Watersports",
"description":"A boat for one person", "price":275.00,
"supplier":null,"ratings":null},
{ "productId":,"name":"Lifejacket","category":"Watersports",
"description":"Protective and fashionable","price":48.95,
"supplier":null,"ratings":null}]},
"ratings":[{"ratingId":,"stars":,"product":null},
{"ratingId":,"stars":,"product":null}]
}
5.关于数据库删除相关数据的行为问题
protected override void OnModelCreating(ModelBuilder modelBuilder) {
modelBuilder.Entity<Product>().HasMany<Rating>(p => p.Ratings)
.WithOne(r => r.Product).OnDelete(DeleteBehavior.Cascade);
modelBuilder.Entity<Product>().HasOne<Supplier>(p => p.Supplier)
.WithMany(s => s.Products).OnDelete(DeleteBehavior.SetNull);
}
如上所示,OnModelCreating函数会重载对数据库操作行为的默认定义。里面的第一句可以将解释为,针对Product实体,它有多个Rating的关联实体,每个Rating实体关联一个Product实体。如果删除Product实体,Rating的实体必须同时删掉。
第二句解释为:针对Product实体,它有一个Supplier的关联实体,每个Supplier实体关联多个Product实体。如果删除Product实体,Supplier的实体设置为null。
6.待解决的问题
- 其他url不能直接跳转到主页
- checkout的几个步骤,刷新页面都会跳到购物车
- Admin的几个页面直接输入url,会切换到用户登录页面; 每次即使已经输入用户密码仍是这样;为什么不能保存用户密码,而要每次输入呢
7. json
. cs里JsonConvert.SerializeObject(products);将对象转化成json的字符串
public static object DeserializeObject(string value);
js里:JSON.stringify(this.newProduct); 将对象转换成json的字符串
如:
JSON.stringify({}); // '{}'
JSON.stringify(true); // 'true'
JSON.stringify("foo"); // '"foo"'
JSON.stringify([1, "false", false]); // '[1,"false",false]'
JSON.stringify({ x: 5 }); // '{"x":5}'
相反的过程函数是 JSON.parse("string")
JSON.parse('{}'); // {}
JSON.parse('true'); // true
JSON.parse('"foo"'); // "foo"
JSON.parse('[1, 5, "false"]'); // [1, 5, "false"]
JSON.parse('null'); // null
JSON.parse('1'); //
Essential pro angular and asp.net core 笔记的更多相关文章
- User Authentication with Angular and ASP.NET Core
User authentication is a fundamental part of any meaningful application. Unfortunately, implementing ...
- [原]CentOS7.2最小安装环境部署Asp.NET Core笔记
转载请注明原作者(think8848)和出处(http://think8848.cnblogs.com) 写在前面的话 不知不觉在cnblogs上注册已经10多年了,看我的园龄就直接暴露了我实际年龄, ...
- docker部署angular和asp.net core组成的前后端分离项目
最近使用docker对项目进行了改进,把步骤记录一下,顺便说明一下项目的结构. 项目是前后端分离的项目,后端使用asp.net core 2.2,采用ddd+cqrs架构的分层思想,前端使用的是ang ...
- asp.net core 笔记
dnvm use 1.0.0-rc1-final -r clr 切换版本
- Angular调用Asp.net Core JWT Authentication接口
基本思路是调用登录接口,获取token,使用token请求其他JWT接口: getHomeDetails(): Observable<HomeDetails> { let headers ...
- Angular 5和ASP.NET Core入门
我希望你们都知道Angular 5已经发布了.在本文中,我们将看到如何使用Angular5TemplateCore开始使用Angular 5和ASP.NET Core. 使用Angular5Templ ...
- 【原生态跨平台:ASP.NET Core 1.0(非Mono)在 Ubuntu 14.04 服务器上一对一的配置实现-篇幅1】
鸡冻人心的2016,微软高产年. build 2016后 各种干货层出不穷. 1 Win10 集成了bash ,实现了纳德拉的成诺,Microsoft Love Linux!!! 2 跨平台 ,收 ...
- 在Visual Studio 2017中使用Asp.Net Core构建Angular4应用程序
前言 Visual Studio 2017已经发布了很久了.做为集成了Asp.Net Core 1.1的地表最强IDE工具,越来越受.NET系的开发人员追捧. 随着Google Angular4的发布 ...
- Asp.Net Core 轻松学-项目目录和文件作用介绍
前言 上一章介绍了 Asp.Net Core 的前世今生,并创建了一个控制台项目编译并运行成功,本章的内容介绍 .NETCore 的各种常用命令.Asp.Net Core MVC 项目文件目录 ...
随机推荐
- python args kwargs 传递参数的区别
先来看个例子: def foo(*args, **kwargs): print 'args = ', args print 'kwargs = ', kwargs print '----------- ...
- iOS逆向开发(0):修改二进制代码与重签名 | hopper | codesigh
小白:小程,你知道有些iOS程序是没人性的吗?老是不按我的意愿来运行! 小程:我怎么知道你的意愿就是有人性的? 本文解决一个问题:修改别人的二进制程序并运行起来. 让别人的程序按你的意愿来运行,文明一 ...
- 高性能Mysql笔记 — 优化
性能优化 了解查询的整个生命周期,清楚每个阶段的时间消耗情况 性能分析 慢查询日志--服务器性能分析 参考 慢查询日志是优化很重要的手段,但是开启慢查询日志对性能的影响并不大,所以可以考虑在线上打开慢 ...
- Linux常用命令之网络和关机重启命令
目录 1.网络命令 一.给指定用户发送信息:write 二.给所有用户发送广播信息:wall 三.测试网络连通性:ping 四.查看和设置网卡信息:ifconfig 五.查看发送电子邮件:mail 六 ...
- 动态代理实现AOP
代理 代理顾名思义:代为处理.不是对目标对象的直接操作,而是通过代理对目标对象进行包装,此时可以在目标对象的基础上添加额外的操作以满足业务需求.图示 分类:动态代理.静态代理. 代理三要素:共同接口. ...
- date、sleep和usleep命令
bash&shell系列文章:http://www.cnblogs.com/f-ck-need-u/p/7048359.html 1.1 date命令 date用于获取和设置操作系统的时间,还 ...
- 简单说明CGI和动态请求是什么
1. CGI是什么 CGI是common gateway interface的缩写,大家都译作通用网关接口,但很不幸,我们无法见名知意. 我们知道,web服务器所处理的内容都是静态的,要想处理动态内容 ...
- SpringBoot学习(五)-->SpringBoot的核心
SpringBoot的核心 1.入口类和@SpringBootApplication Spring Boot的项目一般都会有*Application的入口类,入口类中会有main方法,这是一个标准的J ...
- 【golang-GUI开发】QSS的使用(一)———QSS入门指南
在这篇文章中我们将初步体验对qss的使用.并对在goqt中使用qss时的注意事项进行说明. 那么事不宜迟,现在开始我们的qss之旅吧. QSS语法入门 qss是一种与css3相似的控制Qt组件的样式表 ...
- .Net NPOI 上传excel文件、提交后台获取excel里的数据
1.导入NPOI.dll 2.添加类NPOIExcel.cs using System; using System.Collections.Generic; using System.Text; us ...