ASP.NET_Tag标签_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
当前位置:程序员俱乐部 >>Tag标签 >> ASP.NET >>列表
· ASP.NET Core 中的依赖注入 [共7篇]发布时间:2017-02-23
一、控制反转(IoC)ASP.NETCore在启动以及后续针对每个请求的处理过程中的各个环节都需要相应的组件提供相应的服务,为了方便对这些组件进行定制,ASP.NET通过定义接口的方式对它们进行了“标准化”,我们将这些标准化的组件称为服务,ASP.NET在内部专门维护了一个DI容器来提供所需的服务。要了解这个DI容器以及现实其中的服务提供机制,我们先得知道什么是DI(DependenceInjection),而一旦我们提到DI,又不得不说IoC(InverseofControl)... 查看全文
0Asp.NetCore项目实战之权限管理系统(0)无中生有1Asp.NetCore项目实战之权限管理系统(1)使用AdminLTE搭建前端2Asp.NetCore项目实战之权限管理系统(2)功能及实体设计3Asp.NetCore项目实战之权限管理系统(3)通过EntityFrameworkCore使用PostgreSQL4Asp.NetCore项目实战之权限管理系统(4)依赖注入、仓储、服务的多项目分层实现5Asp.NetCore项目实战之权限管理系统(5)用户登录6Asp... 查看全文
在上面一章我们以实例演示的方式介绍了几种读取配置的几种方式,其中涉及到三个重要的对象,它们分别是承载结构化配置信息的Configuration,提供原始配置源数据的ConfigurationProvider,以及作为“中间人”的ConfigurationBuilder。接下来我们将会对由这三个核心对象组成的配置模型进行详细介绍,不过在此之前我们有必要来认识配置信息在不同载体中所体现出来的三种结构。目录一、配置的三种结构逻辑结构原始结构物理结构结构转换二、Configuration三... 查看全文
在.NETCore1.0.0RC2即将正式发布之际,我也应应景,针对RC2Preview版本编写一个史上最简单的MVC应用。由于VS2015目前尚不支持,VSCode的智能感知尚欠火候,所以我们直接采用最原始的记事本来编写这个MVC应用。[源代码从这里下载]目录步骤一、安装最新的.NETCoreSDK步骤二、定义源代码和配置定义NuGet.xml定义Project.json定义入口程序定义初始化类型定义Controller步骤三... 查看全文
一、MVC简单入门1.1、MVC概念视图(View)代表用户交互界面,对于Web应用来说,可以概括为HTML界面,但有可能为XHTML、XML和Applet。模型(Model)表示用户对其数据的操作的一个封转。可以分为视图模型(viewmodel)和领域模型(domainmodels),视图模型就是在视图与控制器之间传输数据的一个封转,而领域模型就是业务逻辑,后台数据模型等的一个集合。是我们学的3层中的BLL,DAL,Models的集合控制器(Controller... 查看全文
本节中,您将开始修改为电影控制器所新加的操作方法和视图。然后,您将添加一个自定义的搜索页。在浏览器地址栏里追加/Movies,浏览到Movies页面。并进入编辑(Edit)页面。Edit(编辑)链接是由Views\Movies\Index.cshtml视图中的Html.ActionLink方法所生成的:@Html.ActionLink("Edit","Edit",new{id=item.ID})Html对象是一个Helper,以属性的形式,在System.Web.Mvc... 查看全文
· ASP.NET Core中的Startup类发布时间:2017-02-16
ASP.NETCore程序要求有一个启动类。按照惯例,启动类的名字是"Startup"。Startup类负责配置请求管道,处理应用程序的所有请求。你可以指定在Main方法中使用UseStartup<TStartup>()来指定它的名字。启动类必须包含Configure方法。ConfigureServices方法是可选的。在应用程序启动的时候它们会被调用。一、Configure方法用于指定ASP.NET程序如何应答HTTP请求... 查看全文
用EntityFramework进行数据库交互,在代码里直接用lamda表达式和linq对数据库操作,中间为程序员省去了数据库访问的代码时间,程序员直接可以专注业务逻辑层的编写。但是对于比较复杂的表关系关联查询或者修改就比较费劲了。通常可以采用的方式是用EF执行SQL语句或者“存储过程”,特别是执行复杂批量任务,当然也可以在MVC底层用ADO.NET,这里就不多说了。怎么做批量呢?这里讲讲在EF下用存储过程批量添加修改数据。需求是这样的:需要批量添加修改产品类别的投放任务数额,每月更新一次... 查看全文
· ASP.NET Web API 处理架构发布时间:2017-02-16
参考页面:http://www.yuanjiaocheng.net/webapi/create-crud-api-1-delete.htmlhttp://www.yuanjiaocheng.net/webapi/Consume-web-api.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-get.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-post... 查看全文
参考页面:http://www.yuanjiaocheng.net/webapi/first.htmlhttp://www.yuanjiaocheng.net/webapi/web-api-gaisu.htmlhttp://www.yuanjiaocheng.net/webapi/create-web-api-proj.htmlhttp://www.yuanjiaocheng.net/webapi/test-webapi.htmlhttp://www.yuanjiaocheng... 查看全文
参考页面:http://www.yuanjiaocheng.net/ASPNET-CORE/mvc-design-pattern.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/mvc-routing.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/attribute-route.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-actionresults... 查看全文
参考页面:http://www.yuanjiaocheng.net/webapi/Consume-web-api.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-get.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-post.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-put... 查看全文
· 细说ASP.NET Core与OWIN的关系发布时间:2017-02-16
参考页面:http://www.yuanjiaocheng.net/ASPNET-CORE/core-authorize-attribute.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-identity-configuration.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-identity-migrations.htmlhttp://www.yuanjiaocheng... 查看全文
参考页面:http://www.yuanjiaocheng.net/ASPNET-CORE/newproject.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/project-layout.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/projectjson.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-configuration.htmlhttp... 查看全文
参考页面:http://www.yuanjiaocheng.net/ASPNET-CORE/core-dbcontext.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-razor-layout.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-view-start.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-import-view... 查看全文
参考页面:http://www.yuanjiaocheng.net/webapi/create-crud-api-1.htmlhttp://www.yuanjiaocheng.net/webapi/create-crud-api-1-get.htmlhttp://www.yuanjiaocheng.net/webapi/create-crud-api-1-post.htmlhttp://www.yuanjiaocheng.net/webapi/create-crud-api-1-put... 查看全文
· asp.net web api内部培训资料发布时间:2017-02-16
参考页面:http://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-get.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-post.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-put.htmlhttp://www.yuanjiaocheng.net/webapi/mvc-consume-webapi... 查看全文
参考页面:http://www.yuanjiaocheng.net/ASPNET-CORE/core-authorize-attribute.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-identity-configuration.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-identity-migrations.htmlhttp://www.yuanjiaocheng... 查看全文
参考页面:http://www.yuanjiaocheng.net/webapi/create-crud-api-1-post.htmlhttp://www.yuanjiaocheng.net/webapi/create-crud-api-1-put.htmlhttp://www.yuanjiaocheng.net/webapi/create-crud-api-1-delete.htmlhttp://www.yuanjiaocheng.net/webapi/Consume-web-api... 查看全文
参考页面:http://www.yuanjiaocheng.net/ASPNET-CORE/core-views.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-setup-entityframework.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-dbcontext.htmlhttp://www.yuanjiaocheng.net/ASPNET-CORE/core-razor... 查看全文