Sign in
ADO.NET, LINQ, DataSet and other fun .NET technology
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Conferences
Data Binding
Database
DataSet
Entty Framework
LINQ
LINQ to DataSet
LINQ to Entities
Samples
Archive
Archives
July 2008
(1)
May 2008
(4)
November 2007
(1)
October 2007
(3)
September 2007
(1)
August 2007
(1)
July 2007
(1)
May 2007
(4)
March 2007
(2)
February 2007
(2)
October 2006
(1)
September 2006
(2)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
ADO.NET, LINQ, DataSet and other fun .NET technology
Download hotfixes
Posted
over 5 years ago
by
MSDNArchive
0
Comments
Sometimes you run into a bug in DataSet, or some other product. At this point, you have a couple of choices. You can work around the bug, or you can call CSS/PSS. Most people take the former route unless they can't figure out a workaround. When you call...
ADO.NET, LINQ, DataSet and other fun .NET technology
Tech Ed
Posted
over 5 years ago
by
MSDNArchive
0
Comments
I'm currently down in sunny Orlando, getting ready for Tech Ed (or is it TechEd? That dot between letters is a very odd thing). I'm going to be presenting on LINQ to DataSet, and Understanding the Entity Framework. As usual, I have far too much material...
ADO.NET, LINQ, DataSet and other fun .NET technology
LINQ to DataSet - LinqDataView and indexes
Posted
over 5 years ago
by
MSDNArchive
3
Comments
Index usage One of the features of the DataView that often gets overlooked is its ability to very quickly find a DataRow (or multiple DataRows) by an index value. The index is built on the sort criteria, so if you sort based on the last name column...
ADO.NET, LINQ, DataSet and other fun .NET technology
DataSets and nullable types
Posted
over 5 years ago
by
MSDNArchive
9
Comments
Let's say you want to have a DataSet with an Integer column, and this column can have no values, which for argument's sake we'll call NULL values (there is a whole argument about NULL really means, but we'll punt on that). The DataSet has been around...
ADO.NET, LINQ, DataSet and other fun .NET technology
How'ya doing, where'ya been?
Posted
over 5 years ago
by
MSDNArchive
0
Comments
It's been a while - but don't worry, I didn't drop off the face of the planet, or get eaten by huge worms. In the time since my last post, I've taken on some new responsibilities, namely a number of XML technologies, including those that are shipping...
ADO.NET, LINQ, DataSet and other fun .NET technology
EnumerableRowCollection Type
Posted
over 6 years ago
by
MSDNArchive
1
Comments
If you've been playing with LINQ to DataSet, you may have noticed the EnumerableRowCollection type. For example, if you have a query like the following, the type of query is EnumerableRowCollection. var query = from row in ds.Tables[0].AsEnumerable...
ADO.NET, LINQ, DataSet and other fun .NET technology
LINQ to DataSet Data Binding – LinqDataView Restriction Joins
Posted
over 6 years ago
by
MSDNArchive
1
Comments
LINQ To DataSet Data Binding – LinqDataView restriction joins In previous episodes In the last post I made on LINQ To DataSet Binding, I talked about how to create a LinqDataView. I’m going to spend some time today talking about some of the interesting...
ADO.NET, LINQ, DataSet and other fun .NET technology
LINQ to DataSet Data Binding – Introducing LinqDataView
Posted
over 6 years ago
by
MSDNArchive
4
Comments
It's long overdue, but I finally was able to finish a few more posts on this series. Let me know if you find it helpful, and what you would like to see more of! Why DataView? As mentioned in this previous post , there are numerous options for data...
ADO.NET, LINQ, DataSet and other fun .NET technology
Want to see my source?
Posted
over 6 years ago
by
MSDNArchive
2
Comments
Have you ever wondered exactly what is going on inside of ADO.NET? Is Reflector the first thing you install after Visual Studio? Then you'll be interested in that fact that ScottGu just announced that the source for the .NET framework is going to be released...
ADO.NET, LINQ, DataSet and other fun .NET technology
PASS 2007 - Happening now in Denver
Posted
over 6 years ago
by
MSDNArchive
0
Comments
I'm currently in Denver for the SQL Server PASS conference. I'll be giving a talk about the Entity Framework for DBAs tomorrow (Wednesday) afternoon. If you're there, please come by. Even if you can't make my session, stop by and say hello! Thanks...
ADO.NET, LINQ, DataSet and other fun .NET technology
LINQ to DataSet – Data Binding
Posted
over 6 years ago
by
MSDNArchive
8
Comments
With the introduction of LINQ to DataSet there finally exists a full featured query language for the DataSet. Now your ability to query your data is limited only by CLR, which is no small thing! For an introduction on LINQ to DataSet, please see this...
ADO.NET, LINQ, DataSet and other fun .NET technology
Entity Framework starting points
Posted
over 6 years ago
by
MSDNArchive
1
Comments
I was recently asked what a high level list of good starting points for the Entity Framework is. This is a tough question as there are a lot of areas to cover. I've put together a list that I think makes sense from my perspective, which is tilted towards...
ADO.NET, LINQ, DataSet and other fun .NET technology
Entity Framework for DBAs
Posted
over 6 years ago
by
MSDNArchive
7
Comments
There are a host of new technologies coming out, and among them are some ORM type of systems. I want to spend some time exploring how a DBA will work with these, and if they are good or bad. Given that I am on the Entity Framework team, that is the place...
ADO.NET, LINQ, DataSet and other fun .NET technology
LINQ to DataSet WebCast (May 2, 2007) - Samples and slides
Posted
over 6 years ago
by
MSDNArchive
1
Comments
This morning I performed a MSDN WebCast on LINQ to DataSet. I hope it was useful for people, and that I was able to answer all the questions sufficiently. If you missed the live show, you can always catch the "TiVo" version (i.e., on demand webcast)....
ADO.NET, LINQ, DataSet and other fun .NET technology
Beta 1 Orcas Samples - LINQ to Entities
Posted
over 6 years ago
by
MSDNArchive
1
Comments
With all the sample confusion during the March CTP, you will be pleased to know that the sample story for Beta 1 is much more smooth. You can find the complete working set of samples at the following URL. http://msdn2.microsoft.com/en-us/bb330936...
ADO.NET, LINQ, DataSet and other fun .NET technology
Silence soon to be broken
Posted
over 6 years ago
by
MSDNArchive
0
Comments
I've been quiet lately, mostly getting a lot of work done. The DevConnections conference went great; I really enjoyed meeting everyone there! Along those lines, I'll be doing a LINQ to DataSet presentation tomorrow morning. If you're interested, please...
ADO.NET, LINQ, DataSet and other fun .NET technology
LINQ to DataSet at DevConnections 2007
Posted
over 6 years ago
by
MSDNArchive
0
Comments
I just finished a great presentation at DevConnections down here in sunny Orlando. For those of you could make it to my session, I wanted to let you know where you could get the samples for download, which is right here! Please note that Sample 3 will...
ADO.NET, LINQ, DataSet and other fun .NET technology
Problems with the LINQ to Entities 101 samples in the March CTP
Posted
over 6 years ago
by
MSDNArchive
2
Comments
If you have downloaded the March CTP (and you have, haven't you?) you might have noticed that the LINQ to Entities samples were not functioning correctly right out of the gate. Unfortunately in the fast moving world of CTP development, sometimes the samples...
ADO.NET, LINQ, DataSet and other fun .NET technology
Orcas March CTP now available
Posted
over 6 years ago
by
MSDNArchive
0
Comments
The Orcas March (aka Feb) CTP is now available for download. Included in this release is the Entity Framework, LINQ to DataSet, LINQ to XML, LINQ to Entities, and much more. It’s available both as a VPC and as a side-by-side installation. I encourage...
ADO.NET, LINQ, DataSet and other fun .NET technology
LINQ to DataSet
Posted
over 6 years ago
by
MSDNArchive
1
Comments
As part of the process of bringing our technology babies into the world, I wrote a series of blog postings on LINQ to DataSet. They provide an introduction and hit some of the highpoints of LINQ to DataSet. Please head on over and check it out! http...
ADO.NET, LINQ, DataSet and other fun .NET technology
IQueryable<T> vs. IEnumerable<T>
Posted
over 7 years ago
by
MSDNArchive
1
Comments
LINQ over DataSet contains two extension methods on DataTable that allow the data in a DataTable to accessed by LINQ. One exposes the data as IQueryable<DataRow> and the other as IEnumerable<DataRow>. Why is this, and what are these two interfaces...
ADO.NET, LINQ, DataSet and other fun .NET technology
Exploring Extension methods – potential method invocation problems
Posted
over 7 years ago
by
MSDNArchive
3
Comments
Extension methods are one of the many great new features of C# 3.0. They basically allow you to declare static methods that appear to be instance methods of a type, even if you have no access to the type (sealed classes, etc). The key point is that you...
ADO.NET, LINQ, DataSet and other fun .NET technology
When to not cast to Anonymous types
Posted
over 7 years ago
by
MSDNArchive
0
Comments
I was doing some tests on LINQ over DataTables where I was selecting into a new anonymous type. The code was quite simple, just doing a basic select. var res = from n in contacts.Contact where n.LastName.StartsWith("L") select new {n}; ...
Page 1 of 1 (23 items)