I\'m about to develop database server app; I have decided not to use typed dataset/dataset, except in the DAL, (so I\'m not asking the question whether to use dataset or custom objects).
Our app needs to add large amounts of text to SQL Server 2005 database (up to 1 GB for a single record). For performance reasons, this is done in chunks, by making a stored procedure call for each chu
I have created a prototype of a custom ORM tool using aspect oriented programming (PostSHarp) and achieving persistence ignorance (before compile-time). Now I tried to find out how much overhead does
I have a web app that sends ADO Entity data model classes over a WCF service to Silverlight. Imagine this simplified structure for the database
Does anybody know how to improve the performance of a Crystal Report that has a subreport?The subreport uses ADO.NE开发者_StackOverflow社区T objects...and takes FOREVER to generate.Is the subreport be
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly b开发者_运维百科road, or rhetorical andcannot be reasonably answered in its current form.
I have the following code: DataTable t = new DataTable(); t.Locale = CultureInfo.InvariantCulture; t.Columns.Add(\"Date\", typeof(DateTime));
H开发者_C百科ow do I share data between user-controls in .Net, using ADO.net datasets, without ditching the designer?A simple example:
I would like to close all idle connections in the SqlClient connec开发者_高级运维tion pool.Is there a documented method for doing this?
I have no problems setting up a regular (Windows Forms or Console) project in C# to use Firebird\'s .NET data provider.