asp.net

  • IIS部署.NET 5全流程

    在.NET开发环境中,将应用程序部署到IIS(Internet Information Services)是一个常见的需求。本文将详细介绍如何在Windows Server环境中,使用IIS部署.NET 5应用程序的全流程。一、准备工作1. 环境要求操作系统:Windows Server 2012 R2 或更高版本.NET 5 SDK 与运行时:…

    2024-07-18 131

  • An error occurred on the server when processing the URL. Please contact the system administrator解决

    管理员权限问题在我们调试本地网站的时候,经常报下面这个错误An error occurred on the server when processing the URL. Please contact the system administrator.If you are the system administrator please click here to find out more about this error.这是因为没…

    2024-07-15 128

  • DDD领域驱动设计:分层架构、微服务、中台的关系

    微服务架构模型有很多种,例如洋葱架构、CQRS和六边形架构等。其核心理念都是为了设计出“高内聚,低耦合”的微服务。而DDD分层架构的出现,使微服务的架构边界变得越来越清晰。DDD分层架构包含四层,从上到下依次是:用户接口层、应用层、领域层和基础层。DDD分层架构1.…

    2024-06-29 114

  • C#中Automapper的用法

    automapper主要用于:领域模型转视图模型1、引入AutoMapper,AutoMapper.Extensions.Microsoft.DependencyInjection包2、新增一个类,继承Profile3、写一个构造函数,在构造函数中写CreateMap<实体名称,dto名称>().ReverseMap();4、在program中的services新增servic…

    2024-06-23 136

  • C#中AutoMapper的使用

    AutoMapper介绍为什么要使用AutoMapper?我们在实现两个实体之间的转换,首先想到的就是新的一个对象,这个实体的字段等于另一个实体的字段,这样确实能够实现两个实体之间的转换,但这种方式的扩展性,灵活性非常差,维护起来相当麻烦;实体之前转换的工具有很多,不过我…

    2024-06-23 110