Latest Articles in the Category CSharp

Dynamic Binding in a Static Language, Part 2

Manning Publications, Jan 04, 2010
Views: 1257 Avg Rating: 0/5 Votes: 0 Comments: 1

This article is taken from the book C# in Depth, Second Edition.

Dynamic Binding in a Static Language, Part 1

Manning Publications, Dec 22, 2009
Views: 2568 Avg Rating: 0/5 Votes: 0 Comments: 0

This article is taken from the book C# in Depth, Second Edition. This segment looks at what it means for code to be dynamic, and the syntax involved in using dynamic typing in C# 4.

LINQ to SQL Profiler

Andrew Siemer, Nov 23, 2009
Views: 2154 Avg Rating: 0/5 Votes: 0 Comments: 0

In this article we will be taking a look at the new LINQ to SQL Profiler from HibernatingRhinos. This tool gives you a view into the goings on of LINQ to SQL. Not only does it allow you to see the SQL that is generated by your LINQ queries but it also shows you information about your connections, queries, as well as alerting you to all sorts of information that you might otherwise not know about.

Don’t Worry, Load Lazy (in LINQ-to-SQL)

Dino Esposito, Dec 22, 2008
Views: 5086 Avg Rating: 0/5 Votes: 0 Comments: 0

Dino Esposito talks about the lazy load pattern in LINQ-to-SQL.

Complex Types in LINQ-to-SQL—Reloaded

Dino Esposito, Nov 18, 2008
Views: 3518 Avg Rating: 0/5 Votes: 0 Comments: 0

Dino Esposito talks about complex types in LINQ-to-SQL.

Making LINQ-to-SQL A Bit More Abstract

Dino Esposito, Jun 23, 2008
Views: 8398 Avg Rating: 5/5 Votes: 2 Comments: 1

Dino Esposito explains how to customize the code generated by Linq-to-SQL.

Objects and State Tracking in LINQ-to-SQL

Dino Esposito, May 14, 2008
Views: 16351 Avg Rating: 5/5 Votes: 1 Comments: 7

Dino Esposito talks about the DataContext class in LINQ-to-SQL.

With LINQ-to-SQL Every Application Can Have an O/RM

Dino Esposito, Apr 21, 2008
Views: 8388 Avg Rating: 5/5 Votes: 2 Comments: 1

Dino Esposito talks about LINQ-To-SQL as an O/RM tool.

Inside the LINQ-to-SQLs DataContext Class

Dino Esposito, Mar 18, 2008
Views: 33060 Avg Rating: 0/5 Votes: 0 Comments: 3

Inside the LINQ-to-SQLs DataContext Class

LINQ to SQL and Visual Studio 2008

Brian Mains, Feb 06, 2008
Views: 38902 Avg Rating: 3/5 Votes: 1 Comments: 1

Brian Mains discusses LINQ to SQL capabilities in the Visual Studio 2008 designer.

Creating custom LINQ provider using LinqExtender

Mehfuz Hossain, Jan 07, 2008
Views: 22040 Avg Rating: 4/5 Votes: 4 Comments: 0

Mehfuz shows how to create a custom LINQ provider using the open source project LINQExtender.

LINQ provider basics

Mehfuz Hossain, Nov 10, 2007
Views: 29324 Avg Rating: 5/5 Votes: 3 Comments: 5

Learn how to create custom LINQ providers.

Book Review: CLR via C# (2nd edition)

Alessandro Gallo, Sep 12, 2007
Views: 2981 Avg Rating: 0/5 Votes: 0 Comments: 2

Review of the book: CLR via C# (2nd edition).

Introducing LINQ – Part 5

Granville Barnett, Jun 06, 2007
Views: 34386 Avg Rating: 5/5 Votes: 1 Comments: 4

In this part of the series I will explain the DataContext class in depth through a series of examples and explanations.

Book Review: Essential C# 2.0

Granville Barnett, May 21, 2007
Views: 2687 Avg Rating: 4/5 Votes: 1 Comments: 0

Granville Barnett reviews the excellent Essential C# 2.0 book written by Mark Michaelis.

Introducing LINQ – Part 4

Granville Barnett, May 16, 2007
Views: 50628 Avg Rating: 4/5 Votes: 3 Comments: 12

In the previous few parts of this series we have talked a lot about what LINQ can give you, in this part of the series we will use LINQ, ASP.NET and ASP.NET AJAX to replicate the to-do list that Scott Guthrie created a while back to show off the features of ASP.NET AJAX.

Polymorphism and Encapsulation

Brian Mains, Apr 27, 2007
Views: 107869 Avg Rating: 3/5 Votes: 8 Comments: 6

Polymorphism and encapsulation are two big words in OO development, and are also a fundamental concept of software development. This article will demystify these concepts by showing you some real world examples.

Introducing LINQ – Part 3

Granville Barnett, Apr 25, 2007
Views: 59006 Avg Rating: 4/5 Votes: 4 Comments: 0

In Part 2 we took a look at LINQ to SQL, how to generate an entity, and also how to query that entity. In this part we will look a little more at what entities are, as well as taking a closer look at the key types we can use and their application.

Writing an ActiveX control in C#

Imran Nathani, Apr 20, 2007
Views: 111872 Avg Rating: 4/5 Votes: 1 Comments: 11

An ActiveX control is an object that supports a customizable programmatic interface. Using the methods, events and properties exposed by the control, web developers can automate their web pages to give the functionality which is equivalent to that of a desktop application.

Getting Changed Entities from a LINQ to SQL DataContext

Ryan Haney, Apr 18, 2007
Views: 12856 Avg Rating: 4/5 Votes: 3 Comments: 0

In this article you will learn how to get the changes made to your objects prior to updating using generics, reflection and extension methods.

Introducing LINQ – Part 2

Granville Barnett, Apr 11, 2007
Views: 79445 Avg Rating: 3/5 Votes: 4 Comments: 1

In the first part of this series I introduced you to the new language enhancements in C# 3.0, in this part we will look at querying relational data.

Introducing LINQ – Part 1

Granville Barnett, Mar 12, 2007
Views: 207784 Avg Rating: 4/5 Votes: 4 Comments: 3

Introducing LINQ is the first part of a series of articles on Language Integrated Query (LINQ). This series will cover the core essentials of LINQ and its use with other technologies like ASP.NET, Win Forms and WPF.

C# 3.0: An Introduction

Granville Barnett, Jan 19, 2007
Views: 43177 Avg Rating: 4/5 Votes: 3 Comments: 6

In this article we will look at some of the language enhancements in C# 3.0. Throughout the article we will use code examples to demonstrate these new enhancements and how to apply them to real world problems. This article will give you the core understanding you will require to further explore the C# 3.0 language using many of its new features.

Product Spotlight