Resources  
  • How Do I Return the ID of a Newly-Inserted Row in Access SQL?Jan 14, 2026. Learn how to retrieve the auto-generated ID of a newly inserted row in Access SQL! Explore methods like @@IDENTITY, DAO, and ADO with practical examples and VBA code.
  • Understanding Connected Disconnected Scenarios in EF Core MVCJan 06, 2025. This article explains the connected and disconnected scenarios in Entity Framework Core for ASP.NET Core MVC applications. It covers how EF Core handles data in these scenarios, including change tracking, entity states, and managing database contexts.
  • BFS for Disconnected GraphAug 22, 2023. This code implements breadth-first search (BFS) for disconnected graphs. It uses an adjacency list to represent the graph and provides methods for adding edges and performing BFS traversal. The constructor initializes the graph, the AddEdge method connects vertices, and the Bfs method traverses the graph in breadth-first order. The time complexity is O(V+E). An example demonstrates usage.
  • Differences Between EF, Connected Model, And Disconnected ModelFeb 20, 2023. In this article, you will learn differences between EF, connected model and disconnected model.
  • CRUD With Disconnected DataSet In C#May 25, 2022. Disconnected DataSet gives you the ability to modify data on frontend machine. The Code Example in this Article shows how to use Disconnected DataSet to perform CRUD in C#.
  • Building Entity Framework Disconnected Generic RepositoryNov 29, 2017. The repository pattern separates and retrieves data model mapping logic from the business logic. We will create a repository class for each entity class in our application. All these classes usually have a main group of equals methods.
  • Connected V/S Disconnected Architecture In C#Oct 13, 2015. In this article, I will explain you what is connected and disconnected architecture in C# when you are working with the database.
  • Connected And Disconnected Scenarios in Entity FrameworkMar 18, 2015. 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 persistence across various contexts, optimizing CRUD operations for efficient application development.
  • ADO.NET Disconnected ArchitectureFeb 27, 2014. This article explains the Disconnected Architecture in ADO.NET.
  • Cluster Worker Object in Node.jsDec 27, 2013. This article explains what a Worker Object in Node.js is and how a cluster worker persists the data,
  • Insertion In GridView By Disconnected Mode Using ASP.NetSep 10, 2013. This article explains the GridView control and the operations performed in a GridView such as insertion in disconnected mode.
  • How to Disconnect Users From a Shared Folder or DriveMay 17, 2013. In this Article you will learn about How to Disconnect User or User's from a Shared Folder or Drive.
  • Logout From Microsoft Account in Windows 8Mar 02, 2013. This article provides instructions on how to disconnect or remove a Microsoft account from a Windows 8 PC to stop all Microsoft online services for security reasons.
  • Accessing data using DataReader in VB.NETNov 10, 2012. In this article you can see how to access the data using DataReader from the data source.DataReader is a readonly, forward only and connected recordset from the database.
  • Working in a Connected And Disconnected Environment: Part 1Jul 25, 2012. In this article you will learn about the Connected And Disconnected Environment in ADO.NET.
  • Using a Disconnected DataTable to Display Records in GridView in ASP.NETOct 10, 2011. In this post you will learn how to use a disconnected DataTable in ASP.NET to display records.
  • Using the ADO Recordset in ADO.NET Mar 08, 2010. In this article I will explain Creating Your First ADO.NET Web Application.
  • Taking Command in ADO.NETJan 07, 2010. In this article I will explain Taking Command in ADO.NET.
  • ADO .NET Disconnected ClassesOct 28, 2009. In this article I will explain about the ADO.NET Disconnected Classes.
  • ADO .NET Data Providers and Disconnected classes Oct 26, 2009. In this article, you’ll get a broad view of the ADO.NET architecture and the basic building blocks of ADO.NET and ADO.NET data providers.
  • ADO.NET Objects: Part IIJul 23, 2009. In this article I will explain about ADO.NET objects. This will help you in understanding them in an easy manner.
  • ADO.NET Objects: Part IJul 23, 2009. In this article I will explain about ADO.NET objects. This will help you in understanding them in an easy manner.
  • New Dataset Features In ADO.Net 2.0Aug 22, 2005. ADO.NET class libraries are used for accessing data from a wide range of data sources. One of the best features in ADO.Net is DataSet.Even though it was an exciting feature, performance was a concern with DataSet. Lets look some changes made to DataSet in ADO.Net in this article.
  • DataSets in Microsoft .NETFeb 20, 2004. ADO.NET was designed to meet the needs of this new programming model: disconnected data architecture, tight integration with XML, common data representation with the ability to combine data from multiple and varied data sources, and optimized facilities for interacting with a database, all native to the .NET Framework.
  • Using ADO RecordSet in ADO.NETDec 10, 2001. Using ADO recordset in managed code using ADO.NET data providers is pretty simple. Visual studio .NET provides you to add reference to the COM libraries. In this article I'll show you how to access data using ADO recordset and fill a ADO.NET data provider from the recordset data.