Related resources for rame
  • Multithreading With .NET3/29/2024 6:46:05 AM. Multithreading allows a program to run multiple threads concurrently. This article explains how multithreading works in .NET. This article covers the entire range of threading areas from thread creati
  • Method Overloading In C#3/29/2024 6:44:42 AM. Method overloading in C# allows defining multiple methods with the same name but different parameters within the same class. This enables flexibility and enhances code readability by providing various
  • Overview Of ASP.NET MVC3/29/2024 6:32:20 AM. In this article, you will learn about MVC patterns and ASP.NET MVC. MVC is an architectural pattern to develop enterprise applications.
  • ref vs out in C#3/28/2024 10:37:15 AM. Explore the distinction between 'ref' and 'out' keywords in C#. Learn how 'ref' passes arguments by reference for both input and output, while 'out' is used solely for
  • Hide And Group Columns In SSRS Using A Parameter3/28/2024 6:28:15 AM. Learn how to enhance reports without creating multiple versions. Utilize SSRS features like parameters, expressions, and visibility settings to dynamically adjust data presentation, catering to user r
  • Echo Chat Bot In Facebook Messenger Using Microsoft Bot Framework 3/28/2024 6:25:31 AM. In this article, we will learn about an Echo bot configuration for the Facebook messenger channel and its required resource list.
  • Application Insights In MVC Core, Web API Core And Entity Framework Core3/27/2024 9:34:04 AM. Explore comprehensive monitoring and performance tracking with Application Insights in MVC Core, Web API Core, and Entity Framework Core. Gain insights into application behavior, error logging, and da
  • Application Insights In MVC Core, Web API Core And Entity Framework Core3/27/2024 9:33:36 AM. Learn to set up Application Insights SDK in Visual Studio 2019 for local diagnostics. Configure telemetry collection, view dashboard, apply filters, analyze logs, and monitor performance. Enhance deb
  • Integrate Chat Bots In Azure DevOps Extensions - Chat Bot Adoptions3/26/2024 3:10:55 PM. In this article, we’re learning basic information about Extension development, Microsoft Chat Bot Integration in Extensions, Web Chat Enabling for your DevOps organization. It’s an idea about to adopt
  • LUIS.AI Integration with C#.NET and MVC using .NET Framework3/26/2024 10:58:55 AM. LUIS.AI facilitates the creation of Language Understanding (LU) Models tailored to your needs. It processes user queries or conversations with Bots or IoT devices, treating them as input. LUIS.AI inte
  • Seamless Database Integration with C#3/26/2024 5:50:08 AM. 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
  • Soft Deletion in Entity Framework Core3/23/2024 6:35:46 AM. In this article, we will delve into the concept of soft deletion and illustrate how to implement it effectively with EF Core.
  • History and Evolution of Visual Studio and Supported .NET Versions3/22/2024 7:18:14 AM. This article gives a Brief overview of Visual Studio's evolution and its significance in software development. Description of each major version of Visual Studio from 1997 to 2022, highlighting ke
  • Code First Migrations In Entity Framework Step By Step3/21/2024 7:25:30 AM. Learn how to define model classes, configure database mappings, set up connection strings, and utilize Package Manager Console commands to manage migrations efficiently in your ASP.NET application.
  • Learn Everything About REST API3/21/2024 6:31:08 AM. This tutorial covers building a full-fledged application with WPF, REST API, and Entity Framework. It emphasizes the importance and implementation of REST APIs, discussing CRUD operations and their re
  • Important PySpark Import Statements3/21/2024 5:28:24 AM. PySpark, the Python API for Apache Spark, has gained immense popularity for its ability to handle big data processing tasks efficiently. In this article, we'll explore the top five import stateme
  • Create Your First Bot Using Visual Studio 2017 - Step By Step Guide3/20/2024 11:48:20 AM. In this article we will be Seeing how fast companies are adopting Bots, it is really the best time for you to start learning the Bot framework and start adopting Bots for your business.
  • .NET Evolution: Journey of Innovation and Transformation3/20/2024 7:32:19 AM. Discover the limitless potential of .NET, Microsoft's groundbreaking framework for building versatile and high-performance applications. From desktop to web, mobile to cloud, .NET empowers develop
  • First Look At ASP.NET Core 2.1 Preview One - Convert Existing .NET Core Application To .NET Core 2.13/19/2024 6:13:49 AM. Finally, the .NET Core 2.1 preview is out for people to try. Two days ago, the .NET team announced the first preview of .NET Core 2.1. Let us see some of the highlights for this release.
  • Getting Started With ASP.Net MVC3/19/2024 6:00:31 AM. ASP.NET MVC is a pattern dividing apps into Model, View, and Controller, offering advantages like modularity and control. It's recommended for large-scale apps, offering namespaces like System.Web
  • Create Your First Application With ASP.NET Core 3.13/19/2024 5:46:50 AM. Learn to create your first ASP.NET Core application using Visual Studio 2019 and .NET Core 3.1. Explore ASP.NET Core's features like cross-platform support, built-in dependency injection, Kestral
  • What is difference between .NET and .NET Framework?3/18/2024 5:59:32 AM. The ".NET Framework" and ".NET" (formerly known as ".NET Core") are two different implementations of the .NET platform, each serving different purposes and targeting diff
  • A Comprehensive Guide to Entity Framework Core in .NET 83/17/2024 8:41:25 AM. 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
  • How to Pass Credentials as Parameters in PowerShell3/15/2024 3:52:04 AM. In this article we will learn how to pass credentials as parameters in PowerShell. Learn how to pass credentials as parameters in PowerShell using PS objects. Follow step-by-step instructions to updat
  • Creating An ASP.NET MVC 5 Site Using Bootstrap Custom Templates3/13/2024 8:34:59 AM. This tutorial guides you through the process of integrating Bootstrap into your MVC project, leveraging its responsive layout and pre-designed components to create visually appealing user interfaces.
  • Angular 2 Bundle Using WebPack In ASP.NET MVC 3/12/2024 11:04:46 AM. This article, Explores how to optimize Angular 2 applications in ASP.NET MVC using Webpack for efficient bundling and dependency management. Enhance front-end development with streamlined bundle creat
  • Difference Between .NET Framework, .NET Core, and .NET Standard3/11/2024 10:18:50 AM. This article, delves into the distinctions between .NET Framework, .NET Core, and .NET Standard. Exploring their histories, open-source nature, cross-platform capabilities, and performance aspects, th
  • REST API In Node.js Using ES63/11/2024 9:25:53 AM. The tutorial covers various aspects, including project setup using Fort.js CLI, creating controllers for handling HTTP requests, implementing CRUD operations for a user entity, and integrating service
  • Implementing Common Audit Fields With EF Core’s Shadow Property3/11/2024 9:25:16 AM. Implement audit fields in EF Core using shadow properties for efficient tracking of entity modifications. Utilize Entity Framework's built-in functionality to automatically update created and modi
  • GraphQL In .NET Web API With Entity Framework Core - Part Two3/11/2024 9:23:26 AM. Explore advanced GraphQL integration in .NET Core Web API using Entity Framework Core. Learn efficient data modeling, schema design, and resolver implementation for seamless API development.
  • GraphQL In .NET Web API With Entity Framework Core - Part One3/11/2024 9:22:06 AM. In this article, we will learn about the step-by-step implementation of GraphQL in a Web API using ASP.NET Core, including database setup, scaffolding, configuration, repository creation, and GraphQL
  • User Authentication with Forms Authentication in ASP.NET MVC3/10/2024 7:40:33 AM. Forms Authentication is a widely-used mechanism in ASP.NET for managing user authentication within web applications. It allows developers to authenticate users based on credentials stored in a databas
  • Shadow Properties In Entity Framework Core3/7/2024 11:32:17 AM. Entity framework core added many new features that are already present in older entity framework versions. One of the features of the Entity framework core is "Shadow Properties". The featur
  • Code First Approach in Entity Framework3/7/2024 11:28:21 AM. This content provides a comprehensive guide on implementing Entity Framework's code-first approach in ASP.NET MVC applications. It begins with an introduction to Entity Framework, highlighting its
  • Entity Framework Core 5.0 - An Introduction To What's New 3/7/2024 11:26:50 AM. Discover the latest features in Entity Framework Core 5.0, including improved performance, enhanced LINQ capabilities, migration enhancements, and streamlined database schema management.
  • GraphQL In .NET Core Web API With Entity Framework Core - Part Three3/7/2024 8:58:59 AM. Explore GraphQL integration in .NET Core Web API using Entity Framework Core in Part Three of this series. Learn to efficiently query data with C# backend development, enhancing API capabilities.
  • New Features Of Entity Framework Core 2.03/7/2024 8:53:53 AM. Entity Framework Core is a lightweight and extensible version of Entity Framework. It is based on an ORM (Object-Relational Mapper) which enables us to work with databases using .NET objects. This art
  • Shadow Properties In Entity Framework Core3/7/2024 8:52:35 AM. In this article, you will learn Entity Framework Core's shadow properties, and hidden fields in the model that aren't mapped to the database schema directly. Learn how to leverage them for met
  • Entity Framework 6.0: NGen.exe and Startup Performance3/7/2024 8:48:20 AM. This content discusses native code generation, focusing on the process where the Just In Time (JIT) compiler converts MSIL code into native code for execution. It explains how the Native Image Generat
  • Connected And Disconnected Scenarios in Entity Framework3/7/2024 8:45:09 AM. In this article, we will explore the intricacies of data handling in Entity Framework through connected and disconnected scenarios. Learn how to manage data manipulation, state tracking, and persisten
  • Entity Framework Core Triggers In Action (Unofficial Package)3/7/2024 8:44:28 AM. This article shows you how to work with database triggers in Entity Framework Core using a third-party library and Entity Framework Core Triggers with this unofficial package, enhancing database opera
  • Code Only Design using ADO.NET Entity Framework 4.0 3/7/2024 8:43:43 AM. This code snippet implements Code Only Design in ADO.NET Entity Framework 4.0, connecting to a SQL Server database, configuring entities, and binding data to a GridView with exception handling.
  • Practical Introduction to Entity Framework: Day 63/6/2024 10:40:13 AM. In this article, you will Explore Day 6 of our Practical Introduction to Entity Framework series, diving deeper into database integration. Learn essential concepts, including object-relational mapping
  • Practical Introduction To Entity Framework: Day 53/6/2024 10:39:36 AM. Day 5 of our practical introduction to Entity Framework delves deeper into database management with advanced concepts like relationships and efficient CRUD operations. Explore Entity Framework Core fo
  • Practical Introduction To Entity Framework: Day 43/6/2024 10:36:48 AM. This content provides a detailed guide on returning multiple result sets or data sets in Entity Framework. It walks through the steps involved, including creating a normal stored procedure, adding an
  • Practical Introduction To Entity Framework: Day 33/6/2024 10:32:09 AM. Day 3 of this practical Entity Framework introduction delves into database transactions, query optimization, and advanced EF features. Learn to manage relationships, optimize data models, and fine-tun
  • Practical Introduction To Entity Framework: Day 23/6/2024 10:30:54 AM. This article provides a comprehensive guide on executing stored procedures using Entity Framework. It covers creating stored procedures in SQL Server, adding entity models to projects, and calling aut
  • Practical Introduction To Entity Framework: Day 13/6/2024 10:29:58 AM. In this article, we will discover the fundamentals of Entity Framework in this practical introduction. Learn about ORM concepts, database operations, and CRUD operations through hands-on examples.
  • Unit Test Using Mock Object in Dependency Injection3/5/2024 10:36:18 AM. In this article, we will explain how to perform unit tests with mock objects in dependency injection scenarios. Enhance your testing process by isolating dependencies and simulating their behavior, fa
  • Fundamentals of Unit Testing: Don’t Test Your Private Method3/5/2024 10:35:09 AM. In this article, we will discuss the very controversial and important topic of whether the testing of a private method or private function is ethical.
  • Test Initialize and Test Setup3/5/2024 10:34:22 AM. In this article, we will explain the uses of two very important attributes called TestInitialize and TestCleanup. Both attributes are useful at the time of unit test setup.
  • How Python Compliments Machine Learning3/5/2024 10:26:36 AM. Python offers a robust ecosystem that perfectly complements machine learning endeavors. With powerful libraries like TensorFlow, PyTorch, and sci-kit-learn, Python simplifies complex tasks such as dat
  • Decoding React's Magic: Re-evaluation, Reconciliation, Re-rendering3/1/2024 10:13:21 AM. Discover React's core mechanics in 'Unraveling React's Magic.' We break down re-evaluation, reconciliation, and re-rendering, clarifying how they shape seamless UIs. Power of virtual D
  • SharePoint Framework using React JS Part 1 - Setup Configurations3/1/2024 9:44:02 AM. SPFX setup configurations. Explore SharePoint Framework (SPFx) as a modern development tool for SharePoint, replacing older models. Understand the development cycle, necessary skills, and Node.js vers
  • Easily Create A Real-time Application With Blazor And SignalR2/29/2024 9:14:52 AM. In this post, we will see how to create a real-time web application with Blazor WebAssembly and SignalR. We will create a small book data application and see how the data is updated(refreshed) in two
  • ASP.NET Core Blazor Filtering And Sorting Using Entity Framework And Web API2/29/2024 9:13:45 AM. In this article, we will explain in detail, how to create an ASP.NET Core Blazor Filter and Sorting for HTML Table using Entity Framework and Web API.
  • Creating A CRUD With ASP.NET Core And EF Core2/28/2024 11:41:41 AM. Entity Framework Core (EF) is an ORM that makes it simpler to work with database by using POCO classes that map to database entities and DbContext to interact with them.
  • Building ASP.NET Core MVC Application Using EF Core and ASP.NET Core 1.02/28/2024 11:00:47 AM. In this article, We will explain how to build the Applications with ASP.NET Core MVC & Entity Framework Core, using an ASP.NET Core 1.0.
  • CRUP Operation with Dapper Using ASP.NET Core2/27/2024 10:41:54 AM. Using Dapper for CRUD operations in ASP.NET Core is straightforward and efficient. Dapper is a micro ORM that provides simple methods to execute SQL queries and map results to objects. Here's a ba
  • Read JSON File to Spark DataFrame and Fabric Lakehouse for Downstream Analytics2/27/2024 6:38:21 AM. This video shows how to read JSON file into Spark DataFrame using Fabric Notebook and how to write the the data to Fabric Lakehouse for downstream data analytics.
  • Install .Net Framework 3.5 Offline in Windows 82/26/2024 9:24:53 AM. This article provides instructions on how to install .NET Framework 3.5 in Windows 8 offline. In Windows 8, when attempting to install an old application, users may encounter an error message indicati
  • Change Screen Refresh Rate In Windows 102/22/2024 11:31:32 AM. In this article, I have described how to change the screen refresh rate in Windows 10. The Screen refresh rate in Windows 10 is the number of times during a second that a device reconstructs its buff
  • How to Pass a Parameter to Event Handler or Callback in React.js2/22/2024 11:13:06 AM. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • Exploring Vue.js Practical Examples2/21/2024 12:09:24 PM. Vue.js, a progressive JavaScript framework, has gained immense popularity for its simplicity and flexibility. In this article, practical examples to demonstrate the power and versatility of Vue.js. Ea
  • How To Write Simple Todo CRUD ASP.NET MVC Application2/21/2024 10:53:51 AM. This article includes a lab exercise for you to demonstrate what have you learned from this training material to create your own Employee CRUD operation using EmployeeRepository
  • Blazor - CRUD Using PostgreSQL And Entity Framework Core2/20/2024 3:13:20 PM. We will see the CRUD actions in Blazor framework with PostgreSQL database and Entity Framework Core. We will create a sample Patient app with all CRUD actions.
  • ASP.NET Core - Expense Manager Using EF Core And Highcharts2/20/2024 7:31:47 AM. We will create a personal expense manager using Asp.NET Core 2.1 and Entity Framework core Code first approach with the help of Highcharts to show the expense summary chart and a modal dialog to handl
  • Understanding Server-Side Blazor2/20/2024 5:57:53 AM. Blazor is a .NET Core web framework that allows developers to run C# code directly in the browser using WebAssembly.It provides an alternative to traditional JavaScript frameworks like React, Angular,
  • Camelcase Serialization in .Net 92/19/2024 6:27:06 AM. In .NET 9, developers have been granted a powerful tool to enhance data serialization: CamelCase Serialization. This feature facilitates smoother interoperability with systems and frameworks that expe
  • PowerApps Component Framework (PCF) + React2/18/2024 4:48:54 AM. Article that explores the integration of Microsoft’s PowerApps Component Framework with the popular JavaScript library, React. The article provides a comprehensive guide on how to leverage the robustn
  • Blazor Life Cycle Events - Oversimplified2/18/2024 3:33:37 AM. There's a lot that goes into memory when blazor components load into the memory. There are 8 methods which decide the lifecycle of a component. Let's take a deep dive to understand how they co
  • What Is Vuex in Vue.js?2/15/2024 12:02:45 PM. Vuex in Vue.js is a state management pattern and library for managing application state. It provides a centralized store for shared state management across all components, with a predictable state man
  • Power Apps Components Framework (PCF)2/15/2024 5:16:15 AM. The Power Apps Components Framework (PCF) empowers developers to create custom controls for Microsoft Power Apps and Dynamics 365, enhancing user experiences and extending functionalities.
  • Vue vs. Angular: Which Framework to Choose in 2024?2/14/2024 5:29:43 AM. Struggling to decide between Vue and Angular for your web project? Our guide breaks down the distinctions between Angular and Vue, helping you select the perfect fit.
  • Server Side Rendering Of DataTables JS In ASP.NET Core2/12/2024 10:04:00 AM. This article covers the implementation of server-side data configuration in DataTables JS in ASP.NET Core. It explains what DataTables JS is, the need for server-side rendering, creating a .NET Core p
  • Cross-Platform Mobile Development Frameworks2/9/2024 9:28:33 AM. Developing mobile applications for both iOS and Android platforms can be challenging due to the need for separate codebases. Cross-platform frameworks offer a solution, allowing developers to write co
  • CRUD ASP.NET Core Using Entity Framework Core With Swagger2/9/2024 6:51:56 AM. Learn to connect an existing website to a local database using Entity Framework Core. Benefit from faster setup, simplified data access, and reduced code with LINQ. Embrace cross-platform capabilitie
  • C# Versions2/9/2024 6:04:09 AM. This article provides a comprehensive overview of the major releases of the C# programming language, detailing their dates of release, associated .NET Framework versions, Visual Studio editions, and s
  • What Are the Lifecycle Methods of Vue.js?2/9/2024 5:33:57 AM. Vue.js, a powerful JavaScript framework, offers essential lifecycle methods for component management. These hooks enable developers to execute tasks at various stages, enhancing control over component
  • ASP.NET Core 6 Web API CRUD With Entity Framework2/9/2024 4:56:00 AM. In this article, you will learn about ASP.NET Core 6 Web API CRUD With Entity Framework.
  • COM Interoperability Part 1: Using COM Components in .NET Framework2/6/2024 11:08:45 AM. In this article, we review the concepts & walk through an example that demonstrates COM interoperability in the .NET framework. Learn about the Component Object Model (COM) and the Runtime Callabl
  • ADODB Services in .NET Applications Using C#2/6/2024 8:38:12 AM. In this insightful guide, "Modernizing ADO Applications in C# with ADO.NET," discover the transition from traditional ADODB-based systems to the revolutionary world of ADO.NET within the .NE
  • Parameter Binding in Minimal API in ASP.NET Core2/6/2024 7:13:16 AM. When building web applications using ASP.NET Core, developers often need to handle incoming data from HTTP requests. One crucial concept that helps achieve this is called parameter binding. Let's
  • ASP.NET Core MVC vs Razor Pages vs CodeBehind Framework2/2/2024 7:16:16 AM. In this article, we compare the performance of ASP.NET Core with the CodeBehind framework. Once we compare Razor Pages with CodeBehind and once again we compare ASP.NET Core MVC with the CodeBehind fr
  • Building a URL Shortener with .NET2/1/2024 7:24:19 AM. Create a powerful URL shortener using the versatile .NET framework, specifically ASP.NET Core. This guide walks you through setting up a database, implementing URL shortening logic, and configuring co
  • JavaScript Destructuring: Arrays, Functions, and Objects1/31/2024 6:50:31 AM. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • Power BI Parameters for Efficient Data Source Configuration1/30/2024 11:26:16 AM. This article is about using Power BI Parameters for Data Source Configuration. In this Power BI project, connecting to an on-premise Business Central instance posed challenges during deployment. The s
  • Choosing Between Flask and Django for Your Python Web App1/29/2024 10:48:11 AM. Flask and Django are two prominent Python web frameworks; Flask offers simplicity and flexibility for smaller applications, while Django provides a comprehensive package with more built-in features fo
  • Develop D365 Contact Creation Plugin with Unit Test Case 1/24/2024 9:44:52 AM. 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 e
  • Optimizing Performance in C# Entity Framework1/24/2024 8:19:10 AM. 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.
  • TaskCompletionSource and CancellationTokenSource in .NET1/23/2024 6:19:00 AM. Explore the functionalities and use cases of TaskCompletionSource and CancellationTokenSource in the .NET framework for managing asynchronous operations, providing flexibility, and control, and buildi
  • Create a Minimal API with ASP.NET Core and Entity Framework1/22/2024 10:57:47 AM. 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. Th
  • Lazy Loading In ASP.NET Core 7 Web API1/22/2024 9:09:14 AM. 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 marki
  • Eager Loading In ASP.NET Core Web API Complete Example 1/22/2024 8:52:34 AM. 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 cal
  • Securing Your .NET Applications With Examples1/20/2024 11:16:24 AM. In the realm of software development, security remains a paramount concern. This is especially true for .NET applications, which often handle sensitive data and interact with critical systems. By adhe
  • How to Create Reusable Confirmation Modals in Blazor Server1/17/2024 1:39:29 PM. In this article, we will learn how to make confirmation pop-ups in your Blazor Server applications easily. Follow a step-by-step guide using parameters and EventCallback to create reusable models, mak
  • Scrum : An Introduction to Agile Development1/17/2024 10:35:40 AM. In this article, we will see the scrum process in agile development. Scrum, a key framework in Agile development, emphasizes collaboration and iterative delivery. Explore its process, roles (Product O
  • Learn How to Use C# 12 in .NET Framework 4.7.2/4.8 Solutions1/16/2024 9:01:09 AM. Unlock the capabilities of C# 12 in .NET Framework 4.7.2 to 4.8.1 with Visual Studio 2022. Learn the upgrade process, and explore features like literals, nullable types, records, and array expressions
  • Working with Noda Time, .Net and Entity Framework (EF core)1/15/2024 7:14:56 AM. Working with NodaTime with EF core which is a alternative DateTime framework for .net applications.
  • Side Pane with Entity Form in Dynamics 3651/12/2024 4:40:48 AM. 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,