.NET,XML,Serialization,Data Access - n.code

Browse by Tags

14 May 2007
Bulk Update and Insert of Object State Stored by SQL Server 2000, Using .NET (C#)
This is a how to/quick start for doing bulk inserts or updates of data on SQL Server 2000 and .NET. 1. Create a simple class: using System; ... ... [Serializable] public class Entity { private int _id; private string _name; private string _description; public int ID { get { return _id; } } public string... Read More...