LINQ to SQL - DLINQ

Abstract LINQ To SQL for ADO.NET Behind Simple Database Gateway

Hiding LINQ To SQL ADO.NET behind a simple class...

posted @ Friday, February 20, 2009 11:42 AM | Feedback (0)

LINQ To SQL and Executing ADO.NET Commands - O/R Mappers

Using LINQ To SQL for ADO.NET...

posted @ Monday, February 16, 2009 11:17 PM | Feedback (0)

LINQ To SQL Tutorials - Lazy-Loading Properties for Performance

Quick tip on LINQ To SQL.

posted @ Thursday, February 12, 2009 5:01 PM | Feedback (0)

Ft. Myers Florida - Presenting Enterprise Library, Unity and LINQ To SQL Tuesday

Since we have two hours in Ft. Myers on Tuesday, I thought rather than talking 2 hours on Enterprise Library and Unity I can present both my South Florida Code Camp Presentations which are 1 hour in length. This will give us a lot more variety during the evening as we will be talking about Enterprise Library, Unity, and LINQ To SQL!

posted @ Sunday, February 08, 2009 6:58 PM | Feedback (0)

Quick Examples on LINQ To SQL Performance Tuning - Performance Profiling Your O/R Mapper

Examples of performance tuning those LINQ To SQL queries...

posted @ Thursday, January 08, 2009 6:17 PM | Feedback (0)

Pro LINQ Object Relational Mapping with C# 2008 Book Review

First book I have read that attempts to combine Domain-Driven Design Concepts with LINQ To SQL.

posted @ Monday, August 04, 2008 12:30 PM | Feedback (0)

ASP.NET Dynamic Data Futures and MVC Sample - Database-Driven Web Applications

I think ASP.NET Dynamic Data Rocks for forms over data web applications. We have new updates for the runtime, templates, and MVC preview.

posted @ Friday, July 18, 2008 9:41 PM | Feedback (0)

LINQ in Action Book Review - Learn LINQ To SQL - LINQ To Objects - LINQ To XML

LINQ in Action provides some excellent coverage of the new language enhancements added for LINQ as well as the various flavors of LINQ.

posted @ Saturday, July 12, 2008 9:21 PM | Feedback (0)

ASP.NET Dynamic Data Websites Preview May 12 Refresh for Visual Studio 2008 SP1 on MSDN Code Gallery

Looks like the ASP.NET Dynamic Data Wizard will continue to be only found on MSDN Code Gallery as there is a new refresh available for Visual Studio 2008 SP1. Here is what it looks like in Visual Studio 2008 SP1 Beta.

posted @ Tuesday, May 13, 2008 12:08 PM | Feedback (0)

LINQ to SQL Visual LINQ Query Builder - Visual Studio 2008 Add-In

The Visual LINQ Query Builder is a Visual Studio 2008 Add-In and designer that helps you create LINQ to SQL Queries in your application.

posted @ Tuesday, April 08, 2008 9:35 AM | Feedback (0)

Visual Studio 2008 and .NET Framework 3.5 Training Kit - Labs Tutorials Powerpoint Presentation Demos

posted @ Monday, March 31, 2008 8:08 PM | Feedback (0)

Dropthings - Ajax Web Portal - Sample Application of AJAX, LINQ To SQL, LINQ To XML, Windows Workflow

posted @ Thursday, February 21, 2008 9:37 PM | Feedback (0)

LINQ To SQL and SQL Server 2008

posted @ Thursday, February 21, 2008 9:00 PM | Feedback (0)

High Performance LINQ To SQL - Compiled Queries - O/R Mappers - Ecommerce Websites

posted @ Tuesday, February 19, 2008 7:30 PM | Feedback (0)

SQLSaturday - SQL Server Data Access Tips and Techniques with David Hayden - Tampa Florida

posted @ Sunday, February 10, 2008 12:07 PM | Feedback (0)

Free E-book on Microsoft LINQ, Microsoft ASP.NET AJAX, and Microsoft Silverlight

posted @ Saturday, January 12, 2008 10:38 AM | Feedback (0)

ASP.NET Dynamic Data and Validation Using LINQ To SQL OnPropertyChanging Partial Methods

posted @ Tuesday, January 01, 2008 12:49 PM | Feedback (0)

LINQ To SQL LIKE Operator - Generating LIKE in SQL Server Statements

posted @ Friday, November 23, 2007 9:53 AM | Feedback (0)

Create a Custom Profile Provider in ASP.NET 2.0 Using LINQ To SQL For Kicks

For kicks I thought I would create a rough Custom Profile Provider using LINQ To SQL since I was creating a custom profile provider for an application today anyway ( not using LINQ To SQL ). In the end, I think using LINQ To SQL is overkill for a custom profile provider that would be better served with a couple of stored procedures if using a database. It did make for some interesting playing. Read more...

posted @ Tuesday, October 30, 2007 4:30 PM | Feedback (0)

LINQ To SQL Enum Support Example Using Discriminator Column and Inheritance Mapping

In the last LINQ To SQL Post, I could have easily changed the EmployeeType Property on the Employee Entity from int to an enum, called EmployeeType, and apparently LINQ To SQL will automatically take care of the conversion from int to the enum for me. Read more...

posted @ Sunday, October 28, 2007 1:01 PM | Feedback (0)

LINQ To SQL Discriminator Column Example - Inheritance Mapping Tutorial

With LINQ To SQL you can specify a Discriminator Column and Inheritance Mapping that specifies the type to be created in a hierarchy. Let's say we have an abstract Employee Class that maps to an Employees Table in the database with employees being an hourly employee, salaried employee, or commissioned-based employee. Read more...

posted @ Friday, October 26, 2007 3:14 PM | Feedback (0)

LINQ To SQL Attach Method for Attaching Detached Business Entities - DataContext.Attach

posted @ Friday, October 12, 2007 4:50 PM | Feedback (0)

LINQ To SQL and Visual Studio 2008 Performance Update

posted @ Friday, September 28, 2007 11:30 AM | Feedback (0)

LINQPad - Dynamically Query SQL Server Databases in LINQ

posted @ Sunday, September 23, 2007 9:53 AM | Feedback (0)

LINQ To SQL Debugger Visualizer Revisited - Same Concerns Better UI :)

posted @ Monday, August 20, 2007 11:02 AM | Feedback (0)

DataContext.Log - Logging LINQ To SQL Output to Console or Debugger Output Window

posted @ Friday, August 17, 2007 1:57 PM | Feedback (0)

LINQ To SQL Debugger Visualizer in Visual Studio 2008 Has Limited Value - LINQ To SQL Tutorials

This post is not a knock against the LINQ To SQL Debugger Visualizer in Visual Studio 2008, but rather a cautionary note in that the LINQ To SQL Debugger Visualizer is not a complete look at the SQL that will be generated by the DataContext Object. Read more...

posted @ Friday, August 17, 2007 11:42 AM | Feedback (0)

LINQ To SQL As Replacement To Data Access Guidance Package

posted @ Thursday, August 09, 2007 12:14 PM | Feedback (0)

LINQ Data Access Layer - Creating Insert Update Delete Stored Procedures

In the last post I discussed creating stored procedures to help select data from the database using LINQ To SQL. In this post I want to briefly describe how to specify Insert, Update, and Delete Stored Procedures in LINQ To SQL to override the dynamic SQL used by the O/R Mapper.

posted @ Wednesday, August 08, 2007 5:01 PM | Feedback (0)

Creating Data Access Layer Using LINQ To SQL - Stored Procedures Support

Up until now we have been investigating how LINQ To SQL generates queries and how to tweak the model for more optimal performance. In this quick post, I want to talk about using stored procedures to get the data as opposed to letting LINQ To SQL generate the dynamic SQL in your data access layer.

posted @ Tuesday, August 07, 2007 6:57 PM | Feedback (0)

LINQ To SQL Video - Getting From Expression Trees to SQL

posted @ Monday, August 06, 2007 7:40 PM | Feedback (0)

LINQ To SQL - Lazy Loading Properties and Specifying PreFetch When Needed - Sweet Query and Performance Control

This is another post in a series of posts on LINQ To SQL in how I think I have discovered a potential performance problem of LINQ To SQL only to find an elegant solution to the problem using LINQ To SQL. Sweet. Read more...

posted @ Sunday, August 05, 2007 6:00 PM | Feedback (0)

LINQ to SQL - Performance Tradeoffs: Less Database Roundtrips but Duplicated Data in Each Row??

I talked about how LINQ to SQL will prefetch or lazy load relationships via a LinqDataSource based on setting the LoadOptions on the DataContext. It is interesting how LINQ to SQL minimizes roundtrips but duplicates data in the resultset in this case of fetching a Blog and its associated Categories. Read more...

posted @ Sunday, August 05, 2007 2:20 PM | Feedback (0)

LinqDataSource - High Performance Queries Using DataLoadOptions - Avoiding Database Roundtrips

Use DataLoadOptions with the LinqDataSource to specify the prefetch and lazy-loading options of the DataContext to greatly increase the performance of the queries using LINQ to SQL. Read more...

posted @ Friday, August 03, 2007 4:46 PM | Feedback (0)

Code Generation using CodeSmith - v4.1 - Visual Studio 2008 Support and LINQ to SQL Templates

If you are into code generation, it appears a new version of CodeSmith is out - version 4.1. I haven't downloaded it yet, but two bulleted features make me pretty excited: Visual Studio 2008 Support and LINQ to SQL Templates. Read more...

posted @ Thursday, August 02, 2007 11:05 AM | Feedback (0)

LINQ to SQL Validation - Validating Properties and Business Objects - Validation Application Block Can Help

LINQ to SQL in Orcas Beta 2 has a number of new features that help with common validation scenarios both at the property level and at the business object level. Enteprise Library's Validation Application Block Can Help.

posted @ Tuesday, July 24, 2007 1:04 PM | Feedback (0)

LinqDataSource - LINQ to SQL ASP.NET Website Rapid Application Development

The new LinqDataSource Control in Orcas Beta 2 provides some wonderful rapid application development for you ASP.NET websites when using LINQ to SQL. Read more...

posted @ Tuesday, July 24, 2007 10:32 AM | Feedback (0)

C# and VB Partial Methods in Orcas Beta 2 for Code Generation - Business Object Validation Example

In Orcas Beta 2 we will see partial methods, which provides a hook for developers to “inject” code into partial classes without running the risk of that code being overwritten when the class is being generated in the future. Read more...

posted @ Thursday, July 19, 2007 1:39 PM | Feedback (0)

LINQ to SQL Performance and Prepared Statements

posted @ Friday, July 06, 2007 12:33 AM | Feedback (0)

ADO.NET Entity Framework - When To Use It vs. Linq to SQL

posted @ Sunday, April 29, 2007 11:30 PM | Feedback (0)

Linq to SQL Example Tutorial - Visual Studio ORCAS March 2007 CTP - ASP.NET

I had a chance to play with Linq to SQL this evening in the Visual Studio ORCAS March 2007 CTP.The visual designer for Linq to SQL makes things a snap, allowing you to drag SQL Server Database Tables from the Server Explorer to the designer surface. Linq to SQL creates all the classes, relationships, etc. for you as soon as you drop each table onto the surface. Here is a quick Linq to SQL Tutorial I whipped together in about 5 minutes...

posted @ Sunday, March 18, 2007 9:39 PM | Feedback (0)

C# LINQ to SQL Chat Dec 12, 2006 - DLINQ - Microsoft O/R Mapper

posted @ Wednesday, December 13, 2006 6:50 PM | Feedback (0)

Main

News

Green Tea

.NET Development

Enterprise Library

Patterns & Practices