Tag: Development

Community

Cascading Deletes in LINQ to SQL

(Scott Lysle) This article will discuss alternative methods for performing cascading deletes using LINQ to SQL. Cascading delete refers to the action of removing records associated by a foreign key relationship to a record that is the target of a deletion action. LINQ to SQL does not specifically

Community

The Amazing GroupBox, Part 1

(Hannes du Preez) The GroupBox, as you know it, has a specific function, and that is to group several objects together, so that you only have to manipulate one object. For example, to make the items inside the Groupbox invisible, you just need to set the GroupBox’s Visible property to False, instead