Sign In
Data Access Technologies
(Data Access, XML, SSIS, SQL-CE ...)
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
ADO.NET
LINQ
SQL-CLR
XML
Archive
Archives
April 2009
(2)
February 2009
(2)
MSDN Blogs
>
Data Access Technologies
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Data Access Technologies
How to convert an IEnumerable to a DataTable in the same way as we use ToList or ToArray
Posted
over 3 years ago
by
Snehadeep
5
Comments
LINQ provides us some extension methods to convert an IEnumerable to a collection e.g. ToList(), ToArray() etc. But what if you want to convert the enumerable to a DataTable. There is no built in extension method for that currently. var v = ( from...
Data Access Technologies
How to force System.Xml.Xsl.XslCompiledTransform class to not use self closing tags for empty nodes
Posted
over 3 years ago
by
Snehadeep
1
Comments
In .NET 2.0 framework when you use System.Xml.Xsl.XslCompiledTransform class for transforming a document then we always get self closing tags for all the elements which have nothing inside their body. There is no direct way to ask it to use separate closing...
Data Access Technologies
Hung condition on a query to SQLCLR stored procedure doing P/Invoke on a native dll
Posted
over 3 years ago
by
Snehadeep
0
Comments
If you run into a scenario where you see your managed stored procedure from SQLCLR hung perpetually while calling a native dll method using P/Invoke, You may have to check following things. Run following query from another connection select os.task_address...
Data Access Technologies
How to find out the data-reader referencing an ADO.NET connection object to fix the error: "There is already an open DataReader associated with this Command which must be closed first"
Posted
over 3 years ago
by
Snehadeep
1
Comments
Sometimes while executing a DB command in ADO.NET we come across below error. There is already an open DataReader associated with this Command which must be closed first This error is generated when we try to execute some query using a connection...
Page 1 of 1 (4 items)