.NET news » Search results

Search results for query "ado.net" (19):

A small ADO.NET library with some ORM capabilities

Basic CRUD methods with some other interesting features
2010-04-05 17:14:00   Source: A small ADO.NET library with some ORM capabilities   Tags: Database

ADO.NET Entity Framework Overview

ADO.NET in the next release of Visual Studio code-named "Orcas" features the new Entity Framework. It allows developers to focus on data through an object model instead of through a logical/relational data model. The Entity Framework helps abstract the logical data schema into a conceptual model and allows for multiple ways to interact with the conceptual model through Object Services and a new data provider called EntityClient. This month’s column discusses what the Entity Framework is, how it fits into an application, and how it can be designed and programmed against.

2007-05-21 19:00:00   Source: ADO.NET Entity Framework Overview   Tags: Database

ADO.NET Connection Pooling at a Glance

Connection pooling can increase the performance of any application by using active connections of the pool for consecutive requests, rather than creating a new connection each time. And at the same time, the developer who is the best judge of his/her application, can configure the connection pooling.
2007-04-27 05:45:00   Source: ADO.NET Connection Pooling at a Glance   Tags: Database

Take Data Offline Using Microsoft Synchronization Services for ADO.NET

Build occasionally connected applications using Microsoft Synchronization Services for ADO.NET
2007-03-15 10:24:00   Source: Take Data Offline Using Microsoft Synchronization...   Tags: Database

Data Points: Data Bound Applications with ADO.NET and Custom Objects

The Windows Forms binding controls are vastly improved descendents of the data binding controls of the past. They get you going quickly and handle the redundant tasks associated with setting up forms, and you can customize and extend their behavior significantly. Data can travel in a variety of containers, including DataSets and custom class entities, and the Windows Forms binding tools allow you to bind to all of these types of objects. If you don't want to use a DataSet, you can create custom entities to be used as the data store for your application, and you can use List<T> and other collection types to store a set of your custom entities. These types of custom entities can easily be bound using the BindingSource and the BindingNavigator. In this column I'll demonstrate how to bind a custom list of business entities using the binding tools present in the Microsoft .NET Framework 2.0, and I'll do so by writing a fully functional data-driven Windows Forms application.
2006-12-20 18:00:00   Source: Data Points: Data Bound Applications with ADO.NET and...   Tags: Database

ADO.NET vNext Part 2: Using the Object Services Layer

The Entity Data Model and ADO.NET vNext let you deal with tabular data as objects, eliminating much of the effort endemic to older data-retrieval and modification code.
2006-12-08 12:04:48   Source: ADO.NET vNext Part 2: Using the Object Services Layer   Tags: Database

Concurrent model in ADO.NET, ways those allow to negotiate disconnected model restrictions

The most popular instrument to access database data for .NET applications is ADO.NET. This set of components contains three main classes those are used to manipulate and store data: DataReader, DataSet and DataAdapter. DataReader is only able to read data and can't work as data source for data-aware components like DataGridView; DataSet provides all interfaces to be a data source but disconnected model considers some restrictions that can become important for some kind of applications, especially for desktop programs that work under multiuser concurrent environment and change database data actively. Below we consider main restrictions and popular ways to solve them; non standard solutions are considered also.
2006-12-06 06:25:09   Source: Concurrent model in ADO.NET, ways those allow to...   Tags: Database

Application to migrate data between different environments using the ADO.NET 2.0 SqlBulkCopy

This article explains how to migrate data between different SQL Server environments.
2006-11-13 15:53:00   Source: Application to migrate data between different...   Tags: Database

Take a Leap Forward with ADO.NET vNext (Part 1)

ADO.NET vNext is a leap forward in database programming, using mapping files to isolate your applications from relational database schema changes, and letting you choose whether to deal with data directly as objects or as tabular data.
2006-11-03 13:18:08   Source: Take a Leap Forward with ADO.NET vNext (Part 1)   Tags: Database

Application to migrate data between different environments using ADO.NET 2.0 and C# windows forms

This article explains how to migrate data between different environments
2006-10-24 12:00:00   Source: Application to migrate data between different...   Tags: Database
« Previous12Next »