【翻译】Asp.net Core介绍
ASP.NET Core is a significant redesign of ASP.NET. This topic introduces the new concepts in ASP.NET Core and explains how they help you develop modern web apps.
Asp.net Core是重新设计过得新一代Asp.Net。此篇文章介绍Asp.net Core 如何帮助你开发先进的web应用。
What is ASP.NET Core?
什么是Asp.net Core
ASP.NET Core is a new open-source and cross-platform framework for building modern cloud based internet connected applications, such as web apps, IoT apps and mobile backends. ASP.NET Core apps can run on .NET Core or on the full .NET Framework. It was architected to provide an optimized development framework for apps that are deployed to the cloud or run on-premises. It consists of modular components with minimal overhead, so you retain flexibility while constructing your solutions. You can develop and run your ASP.NET Core apps cross-platform on Windows, Mac and Linux. ASP.NET Core is open source at GitHub.
Asp.Net Core 是一个新的、开源的、跨平台的开发框架,为了更好的构建基于云网络的先进应用,比如web app、IoT(物联网) app和移动后端。Asp.net Core应用能够运行在.Net Core或者.Net Framework环境下。这种新架构为应用部署到云或者本地提供了高性能开发框架。它是由模块化组件构成,这样你就能很灵活的构建自己的解决方案。你可以在Windows、Mac和Linux下开发和运行你的Asp.net Core 应用。Asp.Net Core在GitHub上已经开源。
Why build ASP.NET Core?
为什么构建Asp.Net Core?
The first preview release of ASP.NET came out almost 15 years ago as part of the .NET Framework. Since then millions of developers have used it to build and run great web apps, and over the years we have added and evolved many capabilities to it.
作为.Net框架的一部分,Asp.Net从第一个预览版到现在已经过去15年了。数以百万计的开发者使用它开发和运行优秀的web app,这么多年来我们也不断的升级和添加更多的功能。
ASP.NET Core has a number of architectural changes that result in a much leaner and modular framework. ASP.NET Core is no longer based on System.Web.dll. It is based on a set of granular and well factored NuGet packages. This allows you to optimize your app to include just the NuGet packages you need. The benefits of a smaller app surface area include tighter security, reduced servicing, improved performance, and decreased costs in a pay-for-what-you-use model.
Asp.Net Core从架构上有很多的改变,这些改变从而使它成为一个灵活性和模块化的框架。Asp.Net Core 不再基于System.Web.dll。它是基于颗粒状和分解的 NuGet 包。这使你可以优化你的应用程序仅仅包含所需的 NuGet 包。这种pay-for-what-you-use(按需使用)模式的好处包括加强安全、减少维护、提高性能和降低成本。
With ASP.NET Core you gain the following foundational improvements:
使用Asp.net Core你将获得以下改进的功能:
A unified story for building web UI and web APIs
web UI和web Apis使用统一的库
Integration of modern client-side frameworks and development workflows
现代客户端框架和开发工作流的集合
A cloud-ready environment-based configuration system
一个适合云计算环境的配置系统
Built-in dependency injection
内置的依赖注入
New light-weight and modular HTTP request pipeline
全新的轻量级和模块化HTTP请求管道
Ability to host on IIS or self-host in your own process
在自己的进程中运行IIS或者Self-host的能力
Built on .NET Core, which supports true side-by-side app versioning
以.Net Core为基础,支持真正的多应用版本管理
Ships entirely as NuGet packages
完全使用NuGet包管理
New tooling that simplifies modern web development
新的简化的现代化web开发工具
Build and run cross-platform ASP.NET apps on Windows, Mac and Linux
在Windows,Mac和Linux下构造和运行多平台的Asp.Net的应用
Open source and community focused
开源社区共同管理
Build web UI and web APIs using ASP.NET Core MVC
在Asp.Net Core MVC中构建Web UI和Web APIs
You can create well-factored and testable web apps that follow the Model-View-Controller (MVC) pattern. See MVC and Testing.
You can build HTTP services that support multiple formats and have full support for content negotiation. See Formatting Response Data
你可以构建支持多格式和完全支持内容协议的HTTP服务。详见 Formatting Response Data。
Razor 提供了一种创建视图的高效语言。
Tag Helpers enable server-side code to participate in creating and rendering HTML elements in Razor files
在Razor文件中,标签助手使服务器端代码参与创建和渲染Html元素成为可能。
You can create HTTP services with full support for content negotiation using custom or built-in formatters (JSON, XML)
你可以创建完全支持使用自定义或者内置格式化(Json,Xml)内容协商的Http服务。
Model Binding automatically maps data from HTTP requests to action method parameters
自动的从Http请求中的action方法参数中映射数据进行模型绑定。
Model Validation automatically performs client and server side validation
自动执行前端和服务端的模型验证。
Client-side development
前端开发
ASP.NET Core is designed to integrate seamlessly with a variety of client-side frameworks, including AngularJS, KnockoutJSand Bootstrap. See Client-Side Development for more details.
Asp.Net Core的核心目的是为了和各式各样的前端框架无缝连接,包括了AngularJS,KnockoutJS和Bootstrap。详见Client-side Development。
写在最后
接触Asp.Net大概已经十年了,经历了每个版本,这次Asp.Net Core的推出让我非常兴奋,感觉.Net工程师的春天来了,经历那么多知道.Net和Java之间虽然只是语言的差别,但在工作选择上差别实在太大,现在好了,春天到了,相信不就将来.Net和Java将会平分秋色。
第一次翻译,基本上加入的都是自己的理解,有些硬翻译可能不对,希望大家能够发邮件给我,后续会把这个翻译系列做完。
原文链接:https://docs.microsoft.com/zh-cn/aspnet/core/
【翻译】Asp.net Core介绍的更多相关文章
- ASP.NET Core 介绍
原文:Introduction to ASP.NET Core 作者:Daniel Roth.Rick Anderson.Shaun Luttin 翻译:江振宇(Kerry Jiang) 校对:许登洋 ...
- 翻译 Asp.Net Core 2.2.0-preview1已经发布
Asp.Net Core 2.2.0-preview1已经发布 原文地址 ASP.NET Core 2.2.0-preview1 now available 今天我们很高兴地宣布,现在可以试用ASP. ...
- [翻译] ASP.NET Core 3.0 的新增功能
ASP.NET Core 3.0 的新增功能 全文翻译自微软官方文档英文版 What's new in ASP.NET Core 3.0 本文重点介绍了 ASP.NET Core 3.0 中最重要的更 ...
- 翻译 - ASP.NET Core 托管和部署 - 在 Linux 上使用 Nginx 托管 ASP.NET Core 网站
翻译自 https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-5.0 本文介 ...
- [翻译] ASP.NET Core 2.2 正式版发布
本文为翻译,原文地址:https://blogs.msdn.microsoft.com/webdev/2018/12/04/asp-net-core-2-2-available-today/ 我(文章 ...
- [翻译] ASP.NET Core 简介
ASP.NET Core 简介 原文地址:Introduction to ASP.NET Core 译文地址:asp.net core 简介 翻译:ganqiyin ...
- 翻译 - ASP.NET Core 基本知识 - 中间件(Middleware)
翻译自 https://docs.microsoft.com/en-us/aspnet/core/fundamentals/middleware/?view=aspnetcore-5.0 中间件是集成 ...
- 翻译 - ASP.NET Core 基本知识 - 通用主机 (Generic Host)
翻译自 https://docs.microsoft.com/en-us/aspnet/core/fundamentals/host/generic-host?view=aspnetcore-5.0 ...
- 翻译 - ASP.NET Core 基本知识 - Web 主机 (Web Host)
翻译自 https://docs.microsoft.com/en-us/aspnet/core/fundamentals/host/web-host?view=aspnetcore-5.0 ASP. ...
随机推荐
- MongoDB的upsert状态判断和pymongo使用方法
在mongo中,有一个命令非常的方便,就是upsert,顾名思义就是update+insert的作用 根据条件判断有无记录,有的话就更新记录,没有的话就插入一条记录 upsert的使用方法: Mong ...
- Spring之SpringMVC前端控制器DispatcherServlet(源码)分析
1.DispatcherServlet作用说明 DispatcherServlet提供Spring Web MVC的集中访问点,而且负责职责的分派,而且与Spring IoC容器无缝集成,从而可以获得 ...
- 微软宣布.NET开发环境将开源 支持Mac OS X和Linux
微软宣布.NET开发环境将开源 支持Mac OS X和Linux 投递人 itwriter 发布于 2014-11-13 06:58 评论(55) 有4388人阅读 原文链接 [收藏] « » ...
- Your build host version of Xamarin.IOS (release NO.)is too recent to work with the IOS designer
Encounted such error in VS after I update the xamarin at Mac side.Here is the solution for u to refe ...
- hrift 的序列化机制
Thrift 个人实战--Thrift 的序列化机制 前言: Thrift作为Facebook开源的RPC框架, 通过IDL中间语言, 并借助代码生成引擎生成各种主流语言的rpc框架服务端/客户端代码 ...
- 使用vs2010复制粘贴代码时特别卡用一段时间就特别卡重启也没用
vs2010编写代码一段时间后复制粘贴特别卡,下拉条也特别卡,这个状况困扰了我两个月,实在忍不住了,去网上搜了搜 有网友说是快捷键冲突,所以我就把其他程序结束了,结果莫名奇妙的瞬间就不卡了.最终弄明白 ...
- java中的输入流(Scanner),数据类型,运算符,switch,数组的用法
//java中创建包用package相当于C#的命名空间namespace,java中导入包用import相当于C#中引入命名空间usingimport java.util.*;//导入包,*代表导入 ...
- 编写Windows Service 备忘
项目需求要做一个定时扫表,将按条件查询到的数据插入或者更新到另一个数据表的需求,老大要求让用window service来做 因为以前没有做过,把这次的经历写出来.作为备忘. 1.什么是windows ...
- Node填坑教程——过滤器
所谓“过滤器”,只是一个概念,可以理解是一个路由,也可以理解为一个中间件.原理非常简单,就是利用匹配规则,让其有限匹配在正常的路由前面处理就行了. 比如有如下路由 app.get('/', funct ...
- Day3:T3DP T4堆排序
QAQ因为T3的题解说的不是很清楚,但是blogs又不能按照自己想要的顺序排+略有一点强迫症 所以先挖个坑放着,过几天再补上