Showing results for July 2009 - Page 2 of 2 - .NET Blog

Jul 5, 2009
Post comments count0
Post likes count0

Processing Streams with PLINQ

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

In many data-parallel scenarios, all of the data to be processed is available immediately. This blog post addresses the opposite scenario: the inputs arrive gradually (as if in a stream), and we want to start producing results even before reading the last element of the input sequence. There is a variety of scenarios in which inputs become ava...

.NET Parallel Programming
Jul 2, 2009
Post comments count0
Post likes count0

VS2010 Beta1 "Delete existing objects before creating" flag for DB Deployment

Web Development Tools Microsoft
Web Development Tools Microsoft

  Here is an example of end to end scenario of the last blog VS2010 Beta1 Web Application Project Database package and SMO options. Here, we’re going to package a web application and its database with “Delete existing objects before creating” flag, so that we can test the deploy multiple times without the need to drop the database each time a...

ASP.NET
Jul 1, 2009
Post comments count0
Post likes count0

CLR Inside Out – Building Tuple

CLR Team
CLR Team

The new installment of the “CLR Inside Out” column in MSDN magazine is now available on line.  This month we have an article from Matt Ellis on Building Tuple.  It provides one example of how a new type makes it into the base class libraries. You can find a list of all “CLR Inside Out” articles here.  As ...

.NET