Resources  
  • Setting Up a .NET Standard ProjectJul 17, 2024. .NET Standard is a formal specification of .NET APIs that are intended to be available on all .NET implementations. It serves as a base class library that can be used across different .NET platforms, including .NET Core, .NET Framework, Xamarin, and more.
  • How to Set Up Copilot in Visual Studio Code in an Angular Project, Metrics and UsageJul 15, 2024. GitHub Copilot is an advanced AI-powered tool integrated into Visual Studio Code, enhancing coding efficiency by suggesting code snippets, automating routine tasks like unit test generation, and optimizing performance.
  • Working with Entity Framework CoreJul 15, 2024. Entity Framework Core (EF Core) is a powerful Object-Relational Mapping (ORM) framework provided by Microsoft for .NET applications. It simplifies data access and persistence by allowing developers to work with databases using .NET objects, thus abstracting away the complexity of database interactions.
  • The Unit of Work Pattern in C# for Modern ApplicationsJul 11, 2024. Explore the Unit of Work pattern in C#, essential for modern application development. Discover how it facilitates efficient database operations, manages transactions with Entity Framework, and enhances the scalability and maintainability of your data access layer.
  • Retrieving Entity Record IDs in CRM Plugin D365 CEJul 08, 2024. Unlock the methods to efficiently retrieve entity record IDs in Dynamics 365 Customer Engagement (D365 CE) CRM plugins. This guide explores step-by-step processes, best practices, and tips for developers to enhance their CRM customizations.
  • Setting Up Google Authentication in ASP.NET Core MVCJul 08, 2024. Integrate Google Authentication into your ASP.NET Core MVC application for secure and easy user login. Follow steps to create a project in Visual Studio, configure Google API Console, install necessary NuGet packages, update Startup. cs, and handle user authentication and profile management seamlessly.
  • Find Subsets of a Given ArrayJul 03, 2024. In this article, we explore how to find all subsets of an array in C# using a bit manipulation technique. Each subset corresponds to a binary representation of an integer. By iterating through binary masks, we efficiently generate and print all possible subsets, demonstrating a powerful approach to subset generation.
  • Generic Repository with EF Core in .NET Core 8Jul 03, 2024. Observe the Entity Framework Core Generic Repository! The subject that will make some people uncomfortable. They are unwilling to discuss it at all. Others, on the other hand, adore it and become giddy at the mere mention of the generic repository pattern.
  • Setting Up a Basic React Application with RoutingJul 01, 2024. Learn to build a React app with routing using react-router-dom. Set up a structured folder layout, define routes in Main.js, integrate components in App.js with BrowserRouter, and configure the entry point in index.js.
  • Set Interface and Map Interface in java.util PackageJun 26, 2024. The Set Interface and Map Interface within the java.util package are fundamental components of Java's Collections Framework. The Set Interface defines a collection that does not allow duplicate elements, offering implementations like HashSet, TreeSet, and LinkedHashSet.
  • Copying Footers Between SharePoint Sites Using PnP PowerShellJun 24, 2024. I've been extensively using SharePoint and the PnP PowerShell module, which simplifies tasks with easy command sets and detailed documentation. Notably, copying a footer between SharePoint sites is straightforward with PnP.
  • Entity Framework Performance Improvements with Code ExamplesJun 23, 2024. Learn how to optimize Entity Framework performance with practical code examples. This guide covers essential techniques to enhance database efficiency, improve query performance, and eliminate bottlenecks.
  • Lazy Loading (4): EntityFrameworkJun 21, 2024. This article will discuss lazy loading in Entity Framework. This article series explores Lazy Loading, focusing on its application in various technologies like LINQ, HTML, JavaScript, Entity Framework, and Angular, providing insights and performance considerations.
  • Local And Global Variables In Power AppsJun 20, 2024. Local variables are temporary and screen-specific, declared using the UpdateContext function (e.g., UpdateContext({LocalVariableName: Value})). Global variables, declared with the Set function (e.g., Set(GlobalVariableName, Value)), are accessible across screens.
  • SQL MINUS Operator: Finding Differences Between Data SetsJun 18, 2024. In SQL, the MINUS operator plays a crucial role in querying by allowing developers to identify and retrieve records that exist in one dataset but not in another. This article explores the functionality, usage, and practical applications of the MINUS operator in SQL, highlighting its significance in data analysis and manipulation tasks.
  • How To Connect Database in ASP.NET MVC using C# with ADO.NETJun 17, 2024. Learn how to integrate SQL Server with your MVC application, configure connection strings, and perform CRUD operations. Ideal for developers seeking to enhance their data access techniques in ASP.NET.
  • Techniques for Organizing Effective Project Kick-Off MeetingsJun 16, 2024. One important event that sets the tone for the whole project is the kick-off meeting. It's the project team's first genuine chance to get together, set objectives, and develop a mutual comprehension of the project's parameters—scope, schedule, and deliverables.
  • How to Set Up Core Crypto Wallet?Jun 14, 2024. Discover Core Crypto Wallet: A secure, user-friendly solution to manage cryptocurrencies. Learn its features, benefits, and setup in this comprehensive guide.
  • Understanding CRUD Operation in BlazorJun 13, 2024. Explore Blazor Server and WebAssembly models, integrate Entity Framework Core for data management, utilize Razor Components for UI design, and understand data binding in Blazor for seamless interaction.
  • Preventing XSS Attacks in ASP.NET Core MVCJun 12, 2024. Build a secure ASP.NET Core MVC blog app with Entity Framework Core. Follow steps to create models, controllers, views, and implement client-side validation and sanitization to thwart XSS attacks. Access the GitHub project for code reference and ensure your application is protected against common vulnerabilities.
  • Oracle Stored Procedure Output Parameters with Dapper in ASP.NET CoreJun 11, 2024. This article provides a detailed guide to integrating Oracle stored procedures with ASP.NET Core using Dapper, focusing on handling output parameters, which can often be a challenging aspect of database interactions.
  • The Qualities of an Effective Leader: What Sets Great Leaders ApartJun 10, 2024. Any team, community, or organization that wants to succeed needs to have strong leadership. Great leaders create an atmosphere of growth and achievement by inspiring, encouraging, and guiding others to reach their full potential.
  • Achieving Personal Growth: Strategies for Self-Improvement and Work-Life BalanceJun 09, 2024. The responsibilities of work and daily life can easily overwhelm one in today's fast-paced society. Nonetheless, long-term success and satisfaction depend on placing a high priority on work-life balance, personal growth, and self-improvement. This post will discuss practical suggestions and introspection to support your quest for balance and personal development.
  • Interface In TypeScript / Complex Types In TypeScriptJun 09, 2024. In TypeScript, using interfaces helps define complex types, providing clarity and preventing runtime issues. Unlike JavaScript's var/let, interfaces explicitly outline object properties. This approach mirrors server-side coding practices, like in C#, ensuring adherence to coding standards and enhancing type safety.
  • Mastering ASP.NET Core Identity in ASP.NET Core MVCJun 06, 2024. ASP.NET Core Identity is a comprehensive membership system for adding login functionality to your ASP.NET Core applications. It provides a robust framework for managing users, passwords, roles, claims, tokens, email confirmation, and more.
  • Understanding Durable Functions in Azure: A Comprehensive GuideJun 02, 2024. Explore the comprehensive guide to understanding Durable Functions in Azure. This guide delves into the concepts of serverless computing, function orchestration, and workflow automation using Azure Durable Functions.
  • Optimizing Performance with Dapper with .NET Core API May 30, 2024. Learn Dapper best practices for optimal database interaction in .NET applications. Explore techniques like using output parameters and handling multiple result sets in stored procedures. Enhance efficiency with optimized query writing for delete operations.
  • LINQ Query Syntax vs Method Syntax in Entity FrameworkMay 29, 2024. Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Method Syntax offers more flexibility with lambda expressions and method chaining.
  • Finding Duplicates in JavaScript ArraysMay 28, 2024. Discover methods to identify duplicates in JavaScript arrays. Learn to use the Set object for unique values, indexOf() for locating repeated items, and some() for condition checks. Examples illustrate each technique, helping you effectively manage duplicates in your code.
  • Eager Loading and Lazy Loading in Entity FrameworkMay 28, 2024. Entity Framework (EF) is a popular Object-Relational Mapping (ORM) framework for .NET. Understanding these concepts is crucial for improving the performance and efficiency of your applications.
  • Multiple OrderBy Operations in Entity FrameworkMay 27, 2024. Entity Framework (EF) is a powerful ORM (Object-Relational Mapper) in .NET that allows developers to work with databases using .NET objects. In EF, this can be achieved using OrderBy, ThenBy, OrderByDescending, and ThenByDescending methods in LINQ queries.
  • Count vs. Any in Entity Framework for Efficient Querying in .NETMay 24, 2024. Entity Framework (EF) is a powerful Object-Relational Mapper (ORM) for .NET, allowing developers to interact with databases using .NET objects. When working with EF, it's crucial to write efficient queries to ensure optimal performance.
  • Entity and Entity Relationships in DBMSMay 21, 2024. An Entity-Relationship (ER) model visually represents data and relationships in a business domain, aiding database design. It simplifies understanding of complex databases and enhances communication between users and designers.
  • Difference between ADO.NET, ORM and DapperMay 20, 2024. This article explores ADO.NET, ORM, and Dapper in the .NET ecosystem, detailing their history, evolution, and best practices and providing C# code examples for effective data access management.
  • Dotnet Core, EF Core Store Procedure With Multiple ResultsMay 20, 2024. Entity Framework Core coupled with stored procedures for SQL database data retrieval encounters a constraint: consistent return of all columns required for DbQuery<T> properties. This alternative approach offers solutions.
  • Dynamic Mapping Database result to Entity TMay 20, 2024. This article provides logic for Mapping the SQL Result to C# Class. This code snippet demonstrates the dynamic mapping of SQL result columns to C# properties, converting SNAKE_CASE SQL column names to PascalCase C# properties using MapToList for DbDataReader to object mapping.
  • Tips for Improving Performance in Entity FrameworkMay 15, 2024. Optimizing Entity Framework performance, particularly in EF Core, is crucial for efficient data access. These strategies, like eager loading and compiled queries, enhance responsiveness and reduce overhead.
  • 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.
  • Learn to Set up a license to Telerik UI for React app – Part IVMay 10, 2024. Telerik UI for React, or KendoReact, streamlines React app development with a comprehensive toolkit. From efficient UI creation to robust features like SSR and TypeScript support, it enhances productivity and performance.
  • Building CRUD Operations in .NET Core 8 with MongoDBMay 09, 2024. Learn to create CRUD operations in .NET Core 8 Minimal API with MongoDB via Entity Framework Core. Build RESTful endpoints for seamless data interaction, leveraging ASP.NET Core's capabilities for efficient development and MongoDB's flexibility for NoSQL data storage.
  • Web API in Azure (2), Set a Client Credential SecretMay 08, 2024. This article will discuss how to Set a Client Credential Secret for Azure Web API. This series of articles guides users through setting up and consuming a Web API registered on the Azure Identity Platform. This specific article focuses on setting a Client Credential Secret.
  • Inject a DbContext Instance Into BackgroundService in .NET CoreMay 05, 2024. In this article, Learn how to inject and use a DbContext instance within a BackgroundService in .NET Core. Utilize dependency injection to access database operations from a background task, ensuring proper lifecycle management with scoped services.
  • Database Connectivity in Visual Studio May 03, 2024. Visual Studio facilitates robust database connectivity through technologies like ADO.NET and Entity Framework. Developers can seamlessly integrate with SQL Server, MySQL, Oracle, and more using connection strings and data source management tools.
  • Real-Time Text Display in Power Apps Apr 30, 2024. Explore the seamless integration of real-time text input updates with Power Apps. Discover how effortlessly display text input changes dynamically in labels, enhancing user interaction and engagement. Follow a step-by-step guide to implement this feature, empowering your apps with responsive, interactive experiences.
  • Setting Up Azure IoT Edge on Windows EFLOW: OPC Publisher 2.9.6 & KepwareEX Apr 30, 2024. This article presents a comprehensive walkthrough for establishing Azure IoT Edge on the Windows platform, enabling it to run Linux-based containers. Additionally, it delves into the setup of a standalone OPC UA Publisher module, designed to subscribe to tags on a demonstration Kepware OPC UA server.
  • Entity Framework Core: Features, Real-time Implementation, Best PracticesApr 29, 2024. Entity Framework Core (EF Core) stands as a powerful toolset for .NET developers, streamlining the interaction between applications and databases through object-relational mapping (ORM). Whether adopting a database-first or code-first approach, EF Core simplifies data access and manipulation.
  • Pagination in a .NET with EF CoreApr 15, 2024. Pagination allows you to retrieve a large number of records split into pages instead of returning all the results at once. In this article, I present how to implement OffSet and Keyset pagination in a .NET 8 Web API using Entity Framework Core.
  • Soft Delete in Entity Framework CoreApr 08, 2024. Soft delete in Entity Framework Core allows for logically marking records as deleted without physically removing them from the database. This technique involves setting a flag, often "IsDeleted," to true instead of deleting the record.
  • Rename the "Related" entities in Dynamics 365Apr 06, 2024. Rename the "Related connections" entity to "Account-Connections" in CRM, follow steps Login, navigate to Advanced settings, open solution, access Account entity forms, edit "Connections" label, save, publish. Verify the change in an account record.
  • Activate & Deactivate Account Record in Dynamic 365 with PowerShell Mar 28, 2024. InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using specified entity, ID, and state/status codes.
  • Enable Entities for Service-Level Agreements in Dynamics 365Mar 27, 2024. Enable entities for service-level agreements in Dynamic 365. Enable service-level agreements (SLAs) for entities in Power Apps or Dynamics 365 Customer Engagement (on-premises) by following these steps.
  • Seamless Database Integration with C#Mar 26, 2024. Efficiently integrating databases with C# applications is crucial for managing data seamlessly. Explore various approaches like ADO.NET, Entity Framework Core, and Dapper along with best practices for successful integration.
  • Soft Deletion in Entity Framework CoreMar 23, 2024. In this article, we will delve into the concept of soft deletion and illustrate how to implement it effectively with EF Core.
  • Update a Contact record in Dynamics 365 (D365) using PowerShellMar 21, 2024. Update a Contact record in Dynamics 365 (D365) using PowerShell involves modifying existing contact information within the D365 environment programmatically. This process utilizes PowerShell scripting to interact with the Dynamics 365 API.
  • Creating Global Option Sets & Using Them Effectively in CRMMar 18, 2024. To create a Global Option Set in Dynamics 365, define a set of standardized values applicable across multiple entities. Then, reference this set when creating option set fields, ensuring consistent data entry and easier management across the CRM system.
  • Creating Contact Record in D365 with PowerShell Script & Image AttributeMar 15, 2024. Learn to automate Dynamics 365 contact record creation via PowerShell. This script includes adding image attributes, streamlining CRM data management. Utilize Microsoft's Xrm.Data.PowerShell module for efficient and seamless integration, enhancing your CRM automation capabilities.
  • Create Virtual Entity in D365 CRMMar 14, 2024. Creating virtual entities in D365 CRM allows the integration of external data sources seamlessly into your CRM environment. It streamlines data access, enhancing insights and decision-making without extensive data replication, simplifying customization, and enriching CRM capabilities.
  • Introduction To Term Store Management in SharePoint OnlineMar 12, 2024. In this article we will discuss – Introduction To Term Store Management in SharePoint Online And How to create Term Store using PowerShell.
  • A Comprehensive Guide to Entity Framework Core in .NET 8Mar 10, 2024. Explore the comprehensive guide to Entity Framework Core in .NET 8, enriched with the latest features of C# 10. Authored by Ziggy Rafiq, this detailed overview covers everything from basic concepts to advanced techniques, offering insights into database interaction, performance optimisation, testing strategies, and best practices for .NET developers
  • Set the Default Name for Connected Chats in Dynamics 365Mar 06, 2024. As an administrator, configure Microsoft Dynamics 365 to set the chat title as the default record title. In Sales Hub app settings, under Chat and Collaborate, choose a record type, enable Auto-name chats, and save changes.
  • Trigger a Plugin When Contact Removed form Marketing List EntityMar 04, 2024. This content provides guidance on removing a contact from a marketing list in Dynamics 365 using a plugin. It outlines the steps to create, register, implement the logic, deploy, and test the plugin. Additionally, it includes the necessary plugin code and a unit test code snippet.
  • SQL Tuning - Effective Strategies with Practical ExamplesMar 03, 2024. SQL Tuning — Effective Strategies with Practical Examples
  • Bulk Add Terms, Term Sets, and Groups with PowerShell in SharePointFeb 29, 2024. This blog post provides step-by-step instructions on process of executing PowerShell scripts to import term store metadata elements into SharePoint, automating the creation and management of taxonomy structures.
  • Create Auto-Numbering in Microsoft Dynamics 365 EntitiesFeb 29, 2024. Automate entity numbering effortlessly in Microsoft Dynamics 365 with no code required. Utilize system settings, business rules, and workflow automation to generate unique serial numbers for records, enhancing data management and streamlining processes.
  • How to Set Long Expiry to JWT Token?Feb 26, 2024. To set a long expiry time for a JSON Web Token (JWT) in C#, you need to configure the token's expiration claim accordingly.
  • Creating Email Template for Custom Entities in Dynamics 365 CEFeb 24, 2024. This article is about using email template for custom entity in Dynamics 365
  • Trigger Creation: Set Action on Customer Record Create/UpdateFeb 21, 2024. Learn to automate database actions by creating triggers. Choose the trigger name and action type. Execute actions when customer records are created or updated. Enhance database functionality and efficiency with automated processes.
  • Establish a Routing Rule for Customer Service Entity RecordsFeb 20, 2024. Routing rules in Customer Service streamline the process of directing cases to appropriate agents or queues automatically, eliminating the need for manual intervention. These rules also facilitate the routing of escalated cases to specific queues.
  • Enable Audit History for an Entity in CRMFeb 15, 2024. Enable audit history in CRM to track entity changes. Enhance data security, compliance, and integrity by monitoring modifications. Configure settings to log and report on user actions for improved governance.
  • Setting up Micro Frontend with latest version on AngularFeb 11, 2024. Discover step-by-step instructions and best practices for setting up scalable, modular applications using the latest features and tools. Dive into the world of micro frontend architecture and learn how to seamlessly integrate independent Angular applications into a unified, cohesive user experience. From setup to running it, this comprehensive guide has everything you need to level up your development workflow and build modern, maintainable web applications with ease.
  • Duplicate Detection within Dynamics 365 using PowerAppsFeb 09, 2024. Duplicate detection within Dynamics 365 using PowerApps ensures data integrity by identifying and managing duplicate records. Leverage PowerApps' capabilities to validate and match records, establish entity relationships, and automate processes.
  • Create New Records in Account Entity using PowerShell Script in D365Feb 06, 2024. Install the PowerShell module, set the execution policy to RemoteSigned, configure TLS 1.2, connect to Dynamics 365 CRM using the provided credentials, and create new records in the Account entity.
  • Develop D365 Contact Creation Plugin with Unit Test Case Jan 24, 2024. Create a Plugin when a new Contact is created in D365 and Update the same Contact in PreOperation with some data. This code snippet showcases the setup of an Entity Framework plugin in C#. It covers essential lines for retrieving services, context, and executing operations. Also, a unit test example is provided.
  • Optimizing Performance in C# Entity FrameworkJan 24, 2024. Optimize the performance of your C# Entity Framework application with these strategic best practices. From lazy loading and eager loading to caching and database tuning, ensure efficient data access.
  • Create a Minimal API with ASP.NET Core and Entity FrameworkJan 22, 2024. This article explains the concept of minimal APIs, their advantages, and steps to implement CRUD operations. Explore the flexibility and simplicity of minimal APIs for building efficient HTTP APIs. The article covers database setup, model creation, repository implementation, and dynamic registration of APIs during runtime.
  • Lazy Loading In ASP.NET Core 7 Web APIJan 22, 2024. ASP.NET Core 7 Web API. Lazy loading is a technique where related data is only loaded from the database when it is explicitly requested. In Entity Framework Core, lazy loading can be achieved by marking navigation properties as virtual.
  • Eager Loading In ASP.NET Core Web API Complete Example Jan 22, 2024. In ASP.NET Core, eager loading is a technique used to load related data along with the main entity in a single database query. This helps to optimize performance by reducing the number of database calls. Let's implement an example of eager loading in an ASP.NET Core Web API using Entity Framework Core.
  • Set Object in ES7 and TypeScriptJan 16, 2024. The JavaScript Set object is a versatile tool for managing collections with unique values, accommodating various data types, including both primitive values and object references. In this article, we'll dive into the capabilities of the Set object in ES7 (ECMAScript 2016) and explore its usage in TypeScript.
  • Working with Noda Time, .Net and Entity Framework (EF core)Jan 15, 2024. Working with NodaTime with EF core which is a alternative DateTime framework for .net applications.
  • How to set Custom help URL in Dynamics 365Jan 08, 2024. Gain administration access to CRM, then navigate to Advanced Settings, Administration, and System Settings. In the General Tab, locate "Set Custom Help URL" to enable custom help for entities and set a Global Custom Help URL. Click OK to apply.
  • Setting Up Python LocallyJan 08, 2024. Throughout this article, we will delve into the process of acquiring a suitable Python installer and subsequently executing the installation on your local machine using said installer.
  • Entity Relationship Diagrams in Microsoft Dynamics with XrmToolBoxJan 04, 2024. Delve into the realm of data architecture within Microsoft Dynamics 365 as I guide you through the process of crafting detailed Entity Relationship Diagrams (ERDs) using the versatile XrmToolBox. This comprehensive article demystifies the complexities of visualizing and understanding data relationships.
  • Side Pane with Entity Form in Dynamics 365Jan 04, 2024. In Dynamics 365, the "Side Pane" typically refers to a section or area within an entity form where related or additional information is displayed. This section might contain related records, quick views, I frames, or web resources.
  • 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.
  • Eager Loading and Lazy Loading in .NET CoreDec 29, 2023. This article delineates two fundamental data retrieval strategies in .NET Core: Eager Loading and Lazy Loading. Eager loading is a technique used to retrieve related or associated data in a single query from a database.
  • 10 Common Entity Framework interview questions and answers.Dec 24, 2023. here is some common Entity Framework interview questions.
  • Set Interval in JavaScriptDec 19, 2023. Set Interval in JavaScript.
  • Implement Entity Framework A Code First Approach in .Net 8 APIDec 18, 2023. In this article, we are going to discuss. How to implement Entity Framework a code first approach in .Net 8 API. In this approach, model classes and their relation are created first using the ORM designer, and the physical database will be generated using this model. The Model First approach means we create a diagram of the entity and relation that will be converted automatically into a code model.
  • Multi-Tenancy with Separate Databases Approach in .NET CoreDec 14, 2023. In this article, we will learn how to implement a separate database approach of multi-tenancy in the .Net Core application and how to provide a dynamic connection string to DbContext
  • Retrieving Audit Data for a Specific Entity in D365 CE Using C#Dec 08, 2023. This article is about getting audit entity data for a particular entity. This blog guides Dynamics 365 CE users on leveraging C# code to retrieve audit data, ensuring compliance and transparency. Learn to fetch records based on specific operations for insightful analytics.
  • Synergy of .NET, DevOps, and Entity Framework CoreDec 06, 2023. Explore the synergy of DevOps, .NET, and Entity Framework Core for streamlined and efficient software development. Learn to integrate CI/CD pipelines, version control, and automated testing for high-quality applications.
  • Setting up SharePoint app-only principal with App RegistrationDec 01, 2023. The article explains setting up App only principal access to SharePoint online sites using Azure AD Application Registration.
  • How to create a Virtual Machine Scale Set (VMSS) using Microsoft AzureNov 29, 2023. How to create a Virtual Machine Scale Set (VMSS) using Microsoft Azure.
  • How to Set Up a Pull Request in Azure DevOpsNov 28, 2023. A pull request (PR) is more than a notification; it's a dedicated space for collaborative code discussion. It ensures code familiarity, knowledge sharing, and early bug detection. Setting up a pull request in Azure involves defining reviewers, requesting linked work items for clarity, and configuring automatic notifications for specific reviewers.
  • How to Set Up Microsoft Sentinel?Nov 28, 2023. How to Set Up Microsoft Sentinel. Set up Microsoft Sentinel with ease using this step-by-step guide. Learn to navigate the Azure portal, create a new workspace, and install necessary components, ensuring comprehensive threat intelligence and security analytics for your organization. Stay tuned for Series-02, which covers data connector configuration and activity data production in Microsoft Sentinel.
  • How To Select an Avatar Image from Popup to Set as My Profile Picture In Blazor?Nov 22, 2023. In this article, we have learned how to show avatar images as profile pictures.
  • How to set up Service Bus Queue Messages using Service Bus ExplorerNov 15, 2023. In this article, we will learn to Setup Service Bus Queue Message using Service Bus Explorer.
  • Implementing State Design Pattern in ASP.NET Core Web API with 3-Tier ArchitectureNov 10, 2023. In this ASP.NET Core Web API project utilizing a 3-Tier Architecture with the State Design Pattern, we've created a News management system that encapsulates the state of news items, allowing for a clear and structured way to handle state transitions. The architecture consists of three distinct layers: Presentation, Business Logic, and Data Access. The Business Logic layer is where the State Design Pattern is applied, with different states such as Draft, Published, and Archived, each represented by concrete state classes. The NewsService class is responsible for managing these states and their transitions. Controllers in the Presentation layer handle HTTP requests and delegate the state-related operations to the NewsService, enabling CRUD functionality for news items. By setting the appropriate state and invoking state-specific methods, such as Publish and Archive, we control the state transitions. While this example focuses on the pattern's core implementation, in a real-world scenario, you would integrate a data access layer to persist and retrieve news items from a database, making it a robust and maintainable system.
  • How to Set Up the Flutter Environment in Visual Studio Code on Windows SystemOct 30, 2023. This article will discuss about setting up Flutter on a Windows system is comprehensive and user-friendly. It covers the essential steps for installing Git, setting up the Flutter SDK, updating the system environment variables, installing Visual Studio Code, and integrating the necessary Flutter and Dart extensions. The inclusion of specific links to download Git, Flutter SDK, and Visual Studio Code enhances the practicality of the guide and simplifies the setup process for readers.
  • Building a Web API Structure with Database-First Approach (Using EDMX)Oct 23, 2023. In this article, you will learn about Web API Structure With Database First Approch. This article provides a step-by-step guide on creating a web API structure with a database-first approach using EDMX in an ASP.NET web application. The steps include project creation, data model setup, API controller creation, and configuration for JSON output.

About Entity-Sets

NA

OUR TRAINING