(Jim Mischel) I hope the examples in the previous section gave you some idea of what you can do with LINQ. But that barely scratches the surface. LINQ is an incredibly powerful subsystem that, once you learn how to use, will become an integral part of your programming. Let me illustrate with a sligh
Tag: Development
Generics in C# – Part II
(Amr Ashush) Generics give you the ability to create a generic methods or a generic type by defining a placeholder for method arguments or type definitions, which are specified at the time of invoking the generic method or creating the generic type.
ASP.NET FTP with SSL
(Jereme Guenther) I recently needed to connect to a remote FTP server using SSL and C#.NET. I discovered that there were few good examples on the web pertaining to FTP. Part of this was because the .NET framework didn’t seem to support FTP very well until version 2.0. Even in version 2.0, it gives o
.NET Performance Issues: What if I suspect that my performance problem is in SQL Server Part II
(Graham Kent) Last week Graham was guest blogging on my blog about PSSDiag and how to gather data with PSS Diag. In this second installment he talks about how to read and understand the data.
ASP.NET Dynamic Data Preview Available
(Scott Guthrie) A few months ago we released an ASP.NET 3.5 Extensions Preview that contained a bunch of new features that will be shipping later this year (including ASP.NET AJAX Improvements, ASP.NET MVC, ASP.NET Silverlight Support, and ASP.NET Dynamic Data).
ASP.NET 3.5 Extensions Preview – AJAX History Management
(Mina Shawky) ASP.NET 3.5 Extensions Preview is now gaining more attention and a lot of articles are being submitted in order to discuss different enhancements and new additions to the ASP.NET API. One of the very good enhancements has to be with the ASP.NET AJAX and the ability to manage and record
ASP.NET Tips: Getting SOS to work when commands fail
(Tom) So the last quiz asked about a common error message you may see when debugging a dump from .NET on a machine other then where the dump was captured. Now I want to go into more detail on this.
Using LINQ to SQL in an ASP.NET Application
(Stephen Walther) Most of the blood, toil, tears, and sweat that an ASP.NET developer experiences while building a web application is associated with writing the data access code. Microsoft introduced LINQ to SQL with .NET Framework 3.5 to reduce the work that a developer must perform when accessing
Implementing a Left Join with LINQ
(Paul Kimmel) Oddly enough, LINQ doesn’t define keywords for cross join, left join, or right join. As part of the LINQ grammar, you get join and group join. Joins can be equijoins or non-equijoins. An equijoin uses the join keyword and non-equal joins are contrived using where clauses. However, left
VB 2005: How To Print With Word Wrapped Lines
(Ged Mead) Printing can often be a bit of a tricky task in .NET. Some things are more easily resolved than others though.
