Building a Web App with ASP.NET Core, MVC, Entity Framework Core, Bootstrap, and Angular

Since I have spent many years on Windows Application development in my first three years of software career.  I was interested in the C#, had tried to understand the basic knowledge about C#. The programs, the patterns, the object-oriented methodology, as well the thread, interface and so on .

But in the real engineering work, I had little chance to use them. While as fresh man in work, we only have the chance to do some basic things.

Some chores like to shoot a bug, and to understand thirty-party API and so on.

To be a software architect is just a dream. At least in the first three years.

Then I became a team leader of a test team with 6 members together. Our work is just to do simulation test, and then do test on the real instrument(semi-conductor machine). I have great knowledge about the hardware(semi-conductor machine) . Things didn‘t go well, I left the company for breakdown.

I still a pupil in software world, and with great passion. But with personal vision about future, chose a mechanical corporation, and then fight

with the mechanic man. two years later, I lost my passion to be there, I have lost my point, where I should go, where is my future. Be a middle management manager of the present corporation, or found a software corporation and went on the software work. I choose the later.

In 2012, I began to touch with Asp.Net, so with great passion and enthuse, I went on the software work again.

With almost three years, I got to understand the Asp.Net in last.  But the world changes so dramatically. MVC has appeared to try to adapt the .Net technology to the world. So start to read the books around it, do some little code around it. And then there is a chance I can to handle it by myself, then another chance to handle it. And now I got the MVC lastly.

But who know the new things will nonstop. .Net core appeared again, today I have to learning about it, maybe ten hours‘ reading and practice made me freshman again. Wow, this is great, .Net core completely inhabited the great point of MVC.  And much more open, and much more free. The most important is it will support all other platform.

Not only about the .Net core, the Azure platform also shows its‘ greatness. And the many things appeared.

The title just give a great list of what we should learn when do .net core development.

I also understand the difference between angular and the react. Both of them are in great relation with javascript.  There is an example to discript them, angular is a car, and the react is just an engine. it is just is.

So my conclusion is that:

In normal way just to practice them:

ASP.NET Core, MVC, Entity Framework Core, Bootstrap, and Angular .

But is some special environment, you had to learn the React. Since the entertainment world, you should try to use it. It‘s a great sword in View.

Not in the whole framework.  I finally understood why Angular has great relationship with TypeScript. Because Microsoft had developed it. As the angular was developed by google, and React developed by Facebook.

I am still a beginner, and then keep on.

原文地址:https://www.cnblogs.com/tomclock/p/8502618.html

时间: 2024-08-07 21:18:07

Building a Web App with ASP.NET Core, MVC, Entity Framework Core, Bootstrap, and Angular的相关文章

ASP.NET Core 配置 Entity Framework Core - ASP.NET Core 基础教程 - 简单教程,简单编程

原文:ASP.NET Core 配置 Entity Framework Core - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core 配置 Entity Framework Core 上一章节学习完了视图,其实我们应该立即着手讲解模型的,但 ASP.NET Core MVC 中的模型和 Entity Framework 有相当大的关系,所以,在此之前,我们先来讲讲 Entity Framework Core 和如何配置它 本章中,我们将设置和配置我们的应用程

在ASP.NET Core使用Entity Framework Core的日志

在开发中,我们想在调试中查看EF Core执行的sql语句,可以使用SQL Studio Manager Tools工具,另一种方式是使用EF Core提供的日志. 在ASP.NET Core使用Entity Framework Core的日志的步骤: 1. 设置启动方式 在launchSettings.json中删除IIS节点,使程序以控制台应用启动. 2. 在Programm.cs配置日志 using Microsoft.AspNetCore.Hosting; using Microsoft

.NET Core之Entity Framework Core

本文版权归博客园和作者吴双共同所有,欢迎转载,转载和爬虫请注明博客园蜗牛原文地址 http://www.cnblogs.com/tdws/p/5874212.html. 最近打算分享一系列.NET Core实用后台架构,所以首先介绍EF Core.目前国内各大论坛,各位大牛的分享,是按照Microsoft官方文档,在Web层直接应用EF Core.当然这并没有什么问题,因为我也要从文档开始分享.唯一多的一点就是在Dal层中调用DbContext的方法.你以前用的EF6.x,如果在测试代码中你可以

[转].NET Core之Entity Framework Core 你如何创建 DbContext

本文转自:http://www.cnblogs.com/tdws/p/5874212.html 本文版权归博客园和作者吴双共同所有,欢迎转载,转载和爬虫请注明博客园蜗牛原文地址 http://www.cnblogs.com/tdws/p/5874212.html. 目前国内各大论坛,各位大牛的分享,是按照Microsoft官方文档,在Web层直接应用EF Core.当然这并没有什么问题,因为我也要从文档开始分享.唯一多的一点就是在Dal层中调用DbContext的方法.你以前用的EF6.x,如果

ASP.NET Core 开发-Entity Framework (EF) Core 1.0 Database First

ASP.NET Core 开发-Entity Framework Core 1.0 Database First,ASP.NET Core 1.0 EF Core操作数据库. Entity Framework Core 1.0 也已经发布了,可以适用于 .NET Core 1.0 及ASP.NET Core 1.0 . EF Core RC2 时,使用的Code First: http://www.cnblogs.com/linezero/p/EntityFrameworkCore.html E

NET Core & Entity Framework Core

本文是ABP官方文档翻译版,翻译基于 3.2.5 版本 官方文档分四部分 一. 教程文档 二.ABP 框架 三.zero 模块 四.其他(中文翻译资源) 本篇是第一部分的第一篇. 第一部分分三篇 1-1 手把手引进门 1-2 进阶 1-3 杂项 (相关理论知识) 第一篇含两个步骤. 1-1-1 ASP.NET Core & Entity Framework Core 后端(内核)含两篇 (第二篇链接) 1-1-2 ASP.NET MVC, Web API, EntityFramework &

001 Entity Framework Core 2.x P1

001 Entity Framework Core 2.x P1 EF Core 概述: Entity Framework Core 简介 创建Model 与数据库交互 关系数据 在ASP.NET Core中的应用 EF Core 是什么? EF Core是微软官方开发的一款ORM框架. EFCore原理 EF Core 相对于其他ORM的优势在于可以大大的提高生产力,并且,由于是微软自己的产品,所以和.Net Core的结合也会非常的好,可以提供开发者的工作效率,但是相应的, EFCore 的

用ASP.NET Core MVC 和 EF Core 构建Web应用 (一)

系统必备 .NET Core 2.0.0 SDK 或更高版本. 已安装 ASP.NET 和 Web 开发工作负载的 Visual Studio 2017 15.3 版或更高版本. 创建Web应用程序 打开 Visual Studio 并创建一个新 ASP.NET Core C# web 项目名为"ContosoUniversity". 从文件菜单上,选择新建 > 项目. 从左窗格中,选择已安装 > Visual C# > Web. 选择"ASP.NET Co

用ASP.NET Core MVC 和 EF Core 构建Web应用 (十)

之前的学习中,已经以每个类一张表的方式实现了继承. 本节将会介绍在掌握开发基础 ASP.NET Core web 应用程序之后使用 Entity Framework Core 开发时需要注意的几个问题. 原生 SQL 查询 使用 Entity Framework 的优点之一是它可避免你编写跟数据库过于耦合的代码 它会自动生成 SQL 查询和命令,使得你无需自行编写. 但有一些特殊情况,你需要执行手动创建的特定 SQL 查询. 对于这些情况下, Entity Framework Code Firs