Resources  
  • Microservices Architecture with .NET CoreJul 17, 2024. Microservices architecture, using .NET Core, enhances scalability, resilience, and maintainability by breaking down applications into independently deployable services. Each service manages its own data and communicates via APIs.
  • Learn Clean Architecture in .NETJul 04, 2024. Clean Architecture is a software design philosophy that emphasizes creating maintainable, testable, and understandable systems by following principles like separation of concerns, dependency inversion, and encapsulation.
  • Future Roadmap for Software Architecture and EngineeringJun 06, 2024. In the ever-evolving landscape of technology, the role of software architecture and engineering continues to be pivotal in shaping the digital future. As we look ahead, several key trends and advancements are poised to redefine the future roadmap of software architecture and engineering.
  • Mastering Microservices Architecture with C# and .NETMay 13, 2024. In this article, we'll delve into the principles of microservices architecture and explore how to implement it using C#, .NET Core, and cutting-edge technologies like Docker, Kubernetes, gRPC, and RESTful APIs.
  • Deciding the Right Data Reading Architecture in .NETMay 11, 2024. In the dynamic realm of .NET development, choosing the right data reading architecture is paramount for application performance, scalability, and maintainability. Let's delve into practical examples of ADO.NET, Entity Framework, Dapper, and GraphQL to grasp their strengths and weaknesses.
  • All-in-One Architecture/Monolithic Architecture in .NETApr 04, 2024. The "All-in-One" architecture, also known as the Monolithic architecture, is a traditional software design approach where all components of an application are tightly integrated into a single codebase and deployed as a single unit. In the context of .NET development, an "All-in-One" architecture typically involves building a monolithic application using the .NET framework or .NET Core (now .NET 5 and later). Let's explore this architecture in more detail
  • Exploring the Multi-Faceted Architecture of AlbertAGPT: A Paradigm of Secure and Reliable AIMar 20, 2024. AlbertAGPT, a cutting-edge AI architecture, prioritizes security, safety, and reliability. With 190 trillion parameters, it integrates real-time knowledge acquisition, ensuring responsible and continuous learning for revolutionary AI development.
  • Advantages of AlpineGate Technologies' Generative Self-Trainable Transformer Architecture (GST-AGPT)Mar 20, 2024. AlpineGate Technologies has developed a novel AI language model that is founded on a generative self-trainable transformer architecture. This advanced architecture allows the model to incorporate live data during its operation, continuously learning and updating its knowledge base. AlbertAGPT is trained on a large corpus of text data, utilizing 190 trillion parameters, making it one of the most advanced models in terms of scale.
  • Create Cloud Architecture Diagrams in Python with Diagrams LibraryFeb 06, 2024. The Diagrams library by Mingrammer provides a Pythonic approach to creating cloud system architecture diagrams. It allows developers to define components and their interactions using Python code
  • Metadata-Driven Architecture in Data EngineeringFeb 01, 2024. This article explains how data engineers can make their work more flexible and efficient using Metadata-Driven Architecture (MDA). It breaks down two methods: one using a central database (good for structured work like in Azure Data Factory) and another using external files (great for collaborative projects, especially with Databricks).
  • Undertanding Medallion Architecture in Microsoft Fabric LakehouseJan 22, 2024. As MicrosoftFabric is still at an early stage, it is important to understand key terminologies in various workloads. This article unwraps the Medallion Architecture layers peculiar to Lakehouse.
  • Clean Architecture Jan 02, 2024. Embark on a learning journey into the world of Clean Architecture, a transformative paradigm in software development. Uncover its core principles, such as separation of concerns and testability, with real-life examples. Elevate your development skills.
  • Microservices Development with 3-Tier Architecture and Circuit Breaker Design Pattern Using Microsoft ASP.NET Core Web APIDec 30, 2023. The Circuit Breaker pattern, analogous to its electrical counterpart, monitors for failures and helps prevent cascading failures in distributed systems. It acts as a barrier between a potentially failing service or resource and the rest of the system.When a service is working as expected, the Circuit Breaker allows requests to pass through. However, if the service encounters an issue or starts to fail, the Circuit Breaker "opens" and prevents further requests from being sent to the failing service for a defined period. This helps to preserve system resources and prevent overload or degradation.
  • Event Driven Architecture in MicroservicesDec 24, 2023. In this article, you will learn about event streaming in microservices. Event streaming in microservices is a powerful approach to communication and data processing based on a continuous flow of events. Instead of relying on traditional request-response mechanisms, services publish and subscribe to events, enabling loose coupling and real-time data processing.
  • Understanding Onion Architecture in ASP.NET Core 8.0Dec 02, 2023. In this article, we will learn how to implement Onion Architecture principles, emphasizing layered structure for ASP.NET Core.
  • Implementing the Visitor Pattern in ASP.NET Core Web API Using 3-Tier Architecture Nov 14, 2023. In an ASP.NET Core Web API employing a 3-tier architecture, the Visitor Pattern is utilized for efficient data manipulation in the C# Article model. The model, CSharpArticle, includes essential properties. The architecture involves a Data Access Layer with a repository managing database interactions, a Business Layer housing the Visitor interface and Article Service, and a Presentation Layer containing the API controllers. The Visitor Pattern is employed in the Business Layer to perform operations on articles, allowing for clean separation of concerns and enabling reusable, structured, and scalable code. This design ensures that CRUD operations benefit from the Visitor Pattern's flexibility while maintaining a clear division of responsibilities across the layers of the application.
  • API Development Using Strategy Design Pattern with 3-Tier Architecture Nov 12, 2023. In today's fast-paced software development landscape, creating well-structured and maintainable applications is crucial. One popular design pattern that can greatly enhance the organization and flexibility of your ASP.NET Core Web API projects is the Strategy Design Pattern. This pattern allows you to encapsulate and swap out algorithms or behaviors at runtime, making it an ideal choice for handling various CRUD (Create, Read, Update, Delete) operations on your data models. In this article, we'll explore how to implement the Strategy Design Pattern within a 3-Tier Architecture in an ASP.NET Core Web API. You'll learn how to create a robust business logic layer, define concrete strategies for each CRUD operation, and seamlessly integrate them into your API controllers. By the end of this guide, you'll have a comprehensive understanding of how to leverage this pattern for a more maintainable and scalable API.
  • ASP.NET Core Web API with 3-Tier Architecture and Iterator PatternOct 19, 2023. The Iterator Pattern is a behavioral design pattern that provides a way to access elements of a collection sequentially without exposing its underlying representation. It defines an interface for accessing the elements of a collection and keeps track of the current position within that collection.
  • Common Interface Architecture With SSOOct 18, 2023. How to consume common interface from multiple consumer with SSO mechanism. The Common Interface Architecture with Single Sign-On (SSO) integrates two essential concepts in the realm of digital identity and access management. In this architecture, a standardized framework, often referred to as the "Common Interface," is established. This interface provides a unified way for different applications, services, or modules to communicate and authenticate users.
  • Service Oriented Architecture vs Microservice ArchitectureOct 17, 2023. In software development, choosing the right architectural approach is critical to a project's success. Two prominent contenders in this area are Service-Oriented Architecture (SOA) and Microservice Architecture (MSA). This comprehensive guide explores their core principles, characteristics, advantages, and limitations, empowering you to make informed decisions for your project's needs.
  • Simplified ASP.NET Core Web API with Clean Architecture and Chain of Responsibility Oct 16, 2023. In the ever-evolving landscape of web development, creating a robust and maintainable API is crucial. ASP.NET Core, with its versatility and performance, provides an excellent foundation for building web APIs. Clean Architecture, a software design philosophy, promotes separation of concerns and maintainability. In this article, we'll explore the combination of ASP.NET Core, Clean Architecture, and the Chain of Responsibility pattern to implement a straightforward yet powerful solution for CarCompany CRUD operations. Follow along as we break down the steps to construct a simplified and efficient ASP.NET Core Web API.
  • Clean Architecture and Command Pattern in ASP.NET Core API ImplementationOct 16, 2023. Explore a clean and efficient approach to building a robust ASP.NET Core Web API for a Car Company, using Clean Architecture and the Command Pattern. Simplify CRUD operations with a structured and maintainable design.
  • Clean Architecture ASP.NET Core Web API ProxyOct 13, 2023. In the realm of modern web development, constructing a robust and scalable solution is paramount. This journey often involves harmonizing architectural principles and design patterns to enhance maintainability and flexibility. Our venture explores the creation of an ASP.NET Core Web API utilizing the Clean Architecture paradigm and harnessing the power of the Proxy Pattern. Focused on the dynamic domain of CarCompany management, our implementation establishes a structured and modular approach to CRUD (Create, Read, Update, Delete) operations. Through the systematic use of interfaces, repositories, and dependency injection, we aim to not only facilitate seamless data access but also introduce a Proxy layer, offering a versatile gateway for implementing additional functionalities such as caching, logging, and validation. This amalgamation of industry-best practices forms the foundation for a resilient and extensible web API tailored for CarCompany data management.
  • API Development using Clean architecture and facade design pattern in Asp.Net Core Web APIOct 10, 2023. Implementing a complete solution with all the details you've requested involves a significant amount of code, and it might not be feasible to provide an exhaustive example here. However, I can give you a basic outline and provide code snippets for each layer of the Clean Architecture in an ASP.NET Core Web API application using the Facade Pattern
  • Decoding Clean Architecture Implementing the Bridge Pattern and API Operations in ASP.NET Core Web APIOct 09, 2023. By adhering to Clean Architecture principles, the codebase promotes a clear separation of concerns, ensuring that business logic is isolated from implementation details. This not only enhances code maintainability but also facilitates unit testing and the evolution of the application over time.
  • ASP.NET Core Web API Development with Onion Architecture using Prototype Design PatternOct 09, 2023. ASP.NET Core Web API using the Onion Architecture and Prototype Design Pattern. Note that this example is simplified for demonstration purposes, and in a real-world scenario, you might want to add more features, error handling, validation, and security measures.
  • Building Scalable ASP.NET Core Web API with Onion Architecture and Abstract Factory Design PatternOct 06, 2023. This implementation serves as a foundation for building robust, modular, and scalable ASP.NET Core Web APIs. As the project evolves, additional features, security measures, and optimizations can be incorporated while adhering to the principles of the chosen architectural style.
  • Software Architecture TypesSep 26, 2023. Software architecture is the foundation of any software system, determining its structure, component interactions, and trade-offs. It significantly influences application quality, performance, scalability, and maintainability. This comprehensive guide delves into various software architecture types, offering insights into their strengths and weaknesses and guiding you on when to deploy them.
  • Clean Architecture in ASP.NET Core 6 with CQRSSep 25, 2023. An article about clean architecture and how to implement it in asp.net core 6 with Mediatr, AutoMapper, and CQRS technique
  • Hexagonal Architecture in .NET (C#) API DevelopmentSep 25, 2023. In this article, we delve into Hexagonal Architecture, a powerful pattern for creating flexible and maintainable software systems. We'll explore its principles and demonstrate its practical application in .NET (C#) API development.
  • A Clean Architecture for Building Web Applications with ASP.NET Core MVC C#Sep 13, 2023. Discover a clean architecture approach for ASP.NET Core MVC web applications in C#, guided by Ziggy Rafiq for optimal design and development. ASP.NET Core MVC is a robust framework for constructing web applications, and when combined with the Clean Architecture pattern, it can result in manageable and expandable solutions. In this piece, we will explore how to organise an ASP.NET Core MVC project using Clean Architecture principles, with code samples written in C#.
  • MVC Architecture With Node.js CRUD Application [Node.js-Express-MongoDB]Aug 31, 2023. MVC Application- CRUD operations (create, read, update, and delete) Using [Node.js-Express-MongoDB].
  • Cache Notifications and Event-driven Architecture with NCacheAug 27, 2023. In this article, let us discuss the importance of cache notifications in building an event driven application and how we can implement such a mechanism with an example in NCache
  • Component-Based Architecture in AngularJul 20, 2023. Angular's component-based architecture promotes reusability and modularity. .NET developers can leverage their knowledge of building reusable components in technologies like ASP.NET and apply it to Angular. This architecture facilitates code organization, maintenance, and collaboration among developers
  • Domain Driven Design - Architecture May 16, 2023. Quick glance at the Domain-driven design approach and why it's required.
  • Enterprise Architecture And The Role Of Enterprise Architect In The Software WorldApr 04, 2023. As the business landscape continues to evolve, organizations are rapidly adapting to remain competitive in their industries. In the software world, this adaptation necessitates strategic planning and effective management of business processes, technology, and information resources. This is where Enterprise Architecture (EA) and Enterprise Architects come into play. In this article, we will delve into the concept of Enterprise Architecture and explore the role of an Enterprise Architect in the software world.
  • Get CLI - The Ultimate Command Line Tool for GetX Architecture in FlutterFeb 22, 2023. As a Flutter developer, you know that creating complex mobile applications can be a time-consuming and challenging task. The GetX library has been gaining popularity for its simplicity and ease of use, and with the addition of the Get CLI, the development process has become even more streamlined.
  • Windows Containers - High Level Architecture Of ContainersDec 20, 2022. In my previous article, I shared the basic idea of Containerization. In this article , I will explain about the high level architecture of containers.
  • Web API 3 Layers Architecture With .NET 6Nov 09, 2022. This article will explain one of the most used software architectural patterns, the 3 layers architecture. Besides the theoretical explanation of the 3 layers architecture, it will also be given a practical example using .NET 6 in a Web API Project.
  • ASP.NET Core Web API Clean Architecture With JWT Authentication Nov 09, 2022. In this article, you will learn about ASP.NET Core API Clean Architecture With JWT authentication and Swagger.
  • Simple Architecture DesignOct 18, 2022. This page gives a brief idea about how to design a system.
  • Clean Architecture With ASP.NET Core WebAPIOct 03, 2022. Asp.net Core WebAPI - Clean Architecture, Clean Architecture With ASP.NET Core WebAPI
  • N-Layered Architecture With Azure FunctionsAug 15, 2022. In this article, you will learn about N-Layered Architecture with Azure Functions.
  • Clean Architecture In ASP.NET Core Web APIJul 23, 2022. In this article, you will learn about Clean Architecture in Asp.net Core Web API.
  • Onion Architecture In ASP.NET Core 6 Web APIJul 07, 2022. In this article, you will learn about Onion Architecture in Asp.net Core 6 Web API.
  • Fundamentals Of Software Architecture May 20, 2022. Getting started with the basics of Software Architecture in web development
  • The Simplified Clean Architecture ModelMay 19, 2022. In this article, you will learn about the simplified Clean Architecture Model.
  • How To Bind KendoUI Grid In Angular With .NET Core API With Multilayer Architecture And Angular RoutingApr 01, 2022. In this article, you will learn how to bind kendoui grid in angular with .net core api with multilayer architecture and angular routing.
  • Clean Architecture With .NET 6 Using Entity FrameworkMar 22, 2022. The scope of this article is to implement Entity Framework in Clean Architecture with .NET 6 and ASP.NET core Web API. Implement Entity Framework in Clean Architecture Solution with .NET 6 Implement a Business Case Design ASP.NET Core Web API with CRUD operation
  • Clean Architecture With .NET 6Mar 16, 2022. The whole idea of this architecture is to allow the core part, which consists of complete business logic and application entities, adaptive and flexible enough to deal with changing technology and interfaces. Additionally, the core application remains the same and independent of presentation layers, infrastructures, and databases.
  • Implementing A Clean Architecture In ASP.NET Core 6Mar 09, 2022. This post is the first part in a series of posts which describe my personal take on implementing a Clean Architecture with ASP.NET Core 6, and hopefully give you some ideas on how to go about building your own clean architecture.
  • Three Tier Architecture In ASP.NET Core 6 Web APIFeb 02, 2022. In this article, you will learn about Three Tier Architecture in Asp.net Core 6 Web API.
  • Introduction to Enterprise Architecture (EA)Jan 25, 2022. This article discuss what an enterprise architect is, its difference with a developer role, and the 3 common types of architecture in the job market.
  • Implementing Clean Architecture On .NETNov 07, 2021. In this article, you will learn how to implement clean architecture on .NET.
  • Introduction Of ASP.NET Unique Architecture (AUA)Nov 02, 2021. AUA ( Asp.Net Unique Architecture ) Framework, you can easily have better, faster, and more orderly and focused coding. This framework is based on new and up-to-date concepts, structures and architectures, including: Clean Architecture, Clean Code, Domain-driven design (DDD), Lmax Architecture , SOLID Principle, Code Refactoring, GRASP (object-oriented design principle)AUA is a simple, lightweight framework for producing projects of any size (small and large).
  • An Overview Of MicroKernel Architecture PatternAug 24, 2021. The Article describes the MicroKernel Architecture Pattern with an example of a real time Application. To present the concept, the complex design of the application has been simplified and modified.
  • Introduction To Clean Architecture And Implementation With ASP.NET CoreAug 02, 2021. In this article first we will try to have an introduction to Clean Architecture and later on will try to implement this architecture with ASP.NET Core Application.
  • Design Principles In Software Architecture Jul 12, 2021. This article discusses about the Design Principles and Standards extensively used in Software Architecture which are time-tested and relevant as of 2021.
  • Microservices Architecture Pattern - SAGA Jun 20, 2021. In this article, you will learn about the Microservices Architecture pattern - SAGA.
  • Web Application Architecture Jun 18, 2021. Web Application Architecture enables the connection and interactions of multiple components such as the application, database and middleware so that numerous applications can function together with each other. This article discusses on the patterns and architecture for the web application.
  • Cloud Applications Architecture - Building Resilient Systems In Optimized CostsJun 17, 2021. This article discusses about responsibilities of a cloud architect, cloud design pattern and cloud building blocks. Optimization strategies to minimize costs in cloud and automation are also discussed.
  • Onion Architecture In .Net 5Mar 08, 2021. In this article, we are going to cover the Onion Architecture in .Net 5 and its usage.
  • Hexagonal Architecture In ASP.NET CoreFeb 25, 2021. In this article, you will learn about Hexagonal Architecture In ASP.NET Core.
  • Networking Layer Architecture In AWSJan 19, 2021. Discussed about best practices in creating Network layer architecture in AWS.
  • Docker Architecture - Environment - AdvantagesJan 07, 2021. Docker is an internal or integral part of DevOps. With its fantastic architecture design tool, we can achieve major issues or exceptional use of Docker as a virtual machine.
  • 💠 Clean Architecture End To End In .NET 5Dec 08, 2020. Explore the implementation of Clean Architecture in ASP.NET 5.0, covering aspects like Entity Framework Code First Approach, Dependency Injection, AutoMapper for object-object mapping, JWT Authentication for secure access, API Versioning, and Swagger for API documentation.
  • Clean Architecture And CQRS PatternNov 28, 2020. In this article, you will learn about Design Patterns for achieving clean code architecture.
  • J2EE Application Architecture With MessagingNov 12, 2020. In this article, you will learn about a J2EE Application Architecture with Messaging.
  • Modern Architecture Shop - AutoscalerNov 10, 2020. Modern Architecture Shop is a clean-lightweight .NET and scalable application. Keep your eye on the Road Map (watch it on GitHub). The next version will contain a minimal feature set so that the user can add products to the basket and pay it. Recommendation service and all other AI services or features, I provide them later.
  • Creating Information Architecture For HSEQ Document ManagementNov 06, 2020. I am working as an HSEQ System Analyst, and one of my tasks includes creating a Document Management system.My aim is to create a system using out of the box features as maximum as possible.
  • Four Micro-Frontend Architecture Types You Can Implement With BlazorOct 14, 2020. In this article, we will describe how you can implement micro-frontend architectures using Blazor, an open-source framework for creating web applications using C# and Blazor WebAssembly (Wasm).
  • Data Architecture - Database Or Data Warehouse Or Data LakeSep 25, 2020. This article explains the concept of Database, Data Warehouse and Data Lake and provides guidance on selecting one of them for your data requirements.
  • Intel Architecture And DevicesSep 24, 2020. In this article, we will be discussing about CPU, GPU, VPU, FPGA, etc.
  • Modern Architecture Shop (Clean Architecture And Microservices)Aug 23, 2020. Modern Architecture Shop is a clean, lightweight .NET microservices application, showcasing the use of Dapr to build microservices-based applications.
  • 5 Reasons Why Multi-Tenant Architecture Is Best For SaaS Application DevelopmentAug 07, 2020. In this article, you will learn about 5 Reasons Why Multi-Tenant Architecture is Best for SaaS Application Development.
  • Let's Develop an Angular Application - Basic Architecture of an Angular ApplicationApr 24, 2020. In this article, you will learn about the basic architecture of an Angular Application.
  • Design and Architecture of the .NET ApplicationApr 15, 2020. Before we delve into the technical details of any application and start to put together the technical design and architecture, we first need to understand what the application will do, what type of information will it store and how that information will be presented to the user. We also need to layout the general design and architecture of the application considering requirements for scalability, maintainability, performance, extensibility and the application of security.
  • Jetpack Architecture Component - Navigation In AndroidMar 25, 2020. In this article you will learn about Navigation in Android.
  • MVVM Architecture with LiveData AndroidMar 15, 2020. In this article, you will learn about MVVM Architecture with LiveData Android.
  • Plugin Architecture using MEF FrameworkMar 09, 2020. In this article, we will see how we can design a plugin solution using MEF.
  • Simple Plugin Architecture Using Reflection With WPF ProjectsMar 02, 2020. In this article we will see simple plugin architecture using reflection.
  • Implementing Onion Architecture In ASP.NET Core 3.0Feb 24, 2020. From this article you will learn how to Implement Onion Architecture in ASP.NET Core 3.0
  • Azure Architecture StylesJan 27, 2020. This article describes different Architecture Styles that can be leveraged while designing cloud based solutions in Azure
  • Extending Futuristic Architecture To Blazor WASMJan 24, 2020. In this article, you will learn how to extend Futuristic Architecture to Blazor WASM.
  • Data Architecture - Choosing The Right Database Sep 23, 2019. This article describes basic design considerations and addresses necessary architectural concerns while choosing the right database for the Enterprise.
  • MicroService Architecture ​May 14, 2019. In this article, you will learn about microservice architecture.
  • Single Team Owned Service Architecture (STOSA)Feb 12, 2019. Single Team Owned Service Architecture (STOSA) is a guiding principle for large organizations that have many development teams that build and own microservices to cater to one or more enterprise-wide application(s).
  • Room Architecture In AndroidNov 21, 2018. In Google I/O 2017, Google announced about Room Architecture for Android. This Architecture is used to maintain the State of Android Application when the orientation changes. As well as google announced about Room Architecture.
  • Real World Cloud App - From Start To Finish - The Architecture And DesignSep 06, 2018. In the first article of this series, I outlined my goal for these articles, how I want to approach writing back-end services and web site in Azure and how I want you, the reader to help. In this article I want to outline the overall architecture for the services and apps.
  • ASP.NET Core 2 - Architecture And Design Pattern IdeologyJul 06, 2018. The need for a robust, interactive web experience is rapidly growing, necessitating improved, simpler, developer-friendly web technologies. ASP.NET Core 2 enhances productivity by providing a pre-defined architecture separating web logic, infrastructure, and core components.
  • MVC Architecture And Its PipelineJun 04, 2018. MVC Architecture organizes applications into Model, View, and Controller components, each serving distinct roles. The MVC pipeline manages requests, routing them through controllers to interact with models and render views, ensuring separation of concerns and streamlined development.
  • Three-Tier Architecture In ASP.NET With ExampleMay 24, 2018. Layer is reusable portion of a code. In three tier architecture we are creating three layers and reusing the code as per our requirement.
  • Introduction To Azure Architecture - Part TwoMar 16, 2018. I will cover rest of the architecture of Azure in this article. so let's see them one by one.
  • Introduction To Azure Architecture - Part OneMar 15, 2018. In this article, we will learn about the architecture of Azure in detail.
  • Azure Stack Architecture In DepthJan 04, 2018. In this article I explain the architecture of Azure Stack in detail, in an easy-to-understand way
  • Building Multitenant Architecture Using ASP.NET Core And Micro ServicesDec 18, 2017. Instead of deploying an application per client, organizations prefer multitenancy to save infrastructure cost and deployment time. Multitenant architecture helps to adapt changes for different clients under the hood. In this article I am not going to discuss database design for multitenant applications but I will be focused on achieving separation for different clients.
  • How To Create Three-Layer Architecture Of ASP.NET ApplicationDec 03, 2017. Three-layer architecture is made of Presentation, Business, and Data access layer. In this article, I will create three layered architecture with the help of a simple asp.net application.
  • Introduction To Serverless Architecture In AzureNov 11, 2017. In this article, we will see how to create logic apps in Azure.
  • Understand Serverless Architecture In AzureSep 05, 2017. This article will give an overview about the server-less architecture functionality present in Azure using Logic App.
  • Basics Of Enterprise Architecture - Part TwoMay 19, 2017. In the last article, a few key terms like reference architecture, artifacts and types of artifacts were explained. That article also highlighted the need of having a reference architecture in place. Today's article will cover how an architecture comes to existence and who within the enterprise creates and owns the architecture.

About Architecture

NA

OUR TRAINING