Richard's blog
Anmeldung
|
Registrieren
|
Hilfe
Home
Kontakt
RSS
Atom
RSS Kommentare
Suche
Ordnungsbegriffe
.Net
.Net Visual Studio Team System 2008 development
Accumulator
Aggregate
Anonymous Types
Apps
Architecture
architecture software quality .net asp.net scalability
ASP.Net
books
build server
building
builds
C#
C# 2.0
C# 3.0
C# 3.0 extension methods ruby syntax
C# 3.0 extension methods ruby syntax ranges
C# 3.0 migration upgrade refactor
C# automatic properties refactoring
C# mixin multiple inheritance
C# mixins ruby
C# mixins Ruby extension methods multiple inheritance
certification
changes in software development
CI
Code Snippets
Commands
concurrency
data
Design
Development
exams
exceptions
Extension Methods
Fibonacci Sequence C# 3.0 code best practices
framework
free
Grouping
IGrouping
integration
Ironpython
IronPythonStudio
Lambda Expressions
LINQ
LINQ SQL DataContext
LINQ to SQL
LinqDataSource
LINQ-to-XML
ListView
loading
MCP
MCTS
Mix08
MVC
MVP
NVelocity
passing anonymous types functions
PowerCommands
Pro LINQ
Programming
Quaility
Refactoring
Ruby
Silverlight
Silverlight 2.0
Software
SQLMetal
SubSonic
Team System
testing
Tips
Tools
Uncategorized
VB
VB.Net
ViewState
Visual Studio
Web
WF
workflow foundation
WPF
XML
Navigation
Home
Blogs
Archive
Juni 2007 (1)
Test
My profile
Nach Ordnungsbegriffen durchsuchen
Alle Ordnungsbegriffe
»
LINQ to SQL
(
RSS
)
.Net
ASP.Net
C# 3.0
concurrency
data
Design
Development
Grouping
LINQ
LinqDataSource
LINQ-to-XML
ListView
loading
Pro LINQ
Programming
Quaility
Software
SQLMetal
Tips
VB
VB.Net
ViewState
Visual Studio
XML
Easy Data-loading with LINQ-to-SQL and LINQ-to-XML
von
.Net Smoothie
.Net 3.5 had some nice tricks in it. LINQ-to-XML was one of them. With the new "X"-types, you can make working with XML really easy. VB.Net 9 takes it one step further, and lets you write XML in your code without strings. "Hey Rich, that’s...
Abgelegt unter:
Software
,
LINQ
,
.Net
,
Development
,
Visual Studio
,
LINQ to SQL
,
XML
,
LINQ-to-XML
,
data
,
loading
,
VB.Net
,
VB
LINQ or DIE
von
.Net Smoothie
I just read a fantastic quote about LINQ from the book Pro LINQ: Language Integrated Query in C# 2008 by Joseph C. Rattz, Jr.: I prefer to think of LINQ as a data iteration engine, but perhaps Microsoft didn’t want a technology named DIE. I think...
Abgelegt unter:
LINQ
,
.Net
,
LINQ to SQL
,
SQLMetal
,
Pro LINQ
A Pure ASP.Net Grid with Grouping
von
.Net Smoothie
One of my favorite bloggers is Matt Berseth. Nearly once a week he comes up with a post where he does something amazing with the standard ASP.Net controls. I usually read his posts in awe. He’s really good. But he’s not only is a good developer...
Abgelegt unter:
.Net
,
ASP.Net
,
Development
,
LINQ to SQL
,
LinqDataSource
,
Grouping
,
ListView
The LinqDataSource and the Hidden Viewstate
von
.Net Smoothie
Yesterday I thought I’d learn about the LinqDataSource in ASP.Net 3.5, and got an interesting surprise. The new LinqDataSource can also be used with a LINQ-to-SQL model to perform updates. You simply add the DataSource to your page, set the table...
Abgelegt unter:
Software
,
C# 3.0
,
LINQ
,
.Net
,
ASP.Net
,
Quaility
,
Development
,
Visual Studio
,
LINQ to SQL
,
Programming
,
LinqDataSource
,
ViewState
,
concurrency
How to Update Data with LINQ-to-SQL
von
.Net Smoothie
When learning LINQ-to-SQL, it’s not immediately obvious how to do an update. Querying is easy, and there are methods for inserting and deleting. Updating usually occurs by modifying an object already known to the DataContext and then calling SubmitChanges...
Abgelegt unter:
Software
,
C# 3.0
,
LINQ
,
.Net
,
Design
,
LINQ to SQL
How to See the SQL Generated by a LINQ to SQL Command
von
.Net Smoothie
Quick tip: If you want to see the SQL generated by LINQ to SQL for a query or command, simply set the Log property of your generated DataContext class to an instance of a TextReader. If this is your code: using System; using System.Linq; using System...
Abgelegt unter:
C# 3.0
,
LINQ
,
.Net
,
Tips
,
LINQ to SQL