.NET news » Search results

Search results for query "orm" (111):

Online Article: New Features In Visual Studio 2005 Windows Forms

Online Article: New Features In Visual Studio 2005 Windows Forms

"Don't do it! Don't do it!" the little voice in my head shouted as I contemplated using the worn out clich? "Good things come to those who wait" to describe the experience of designing Windows applications with Visual Studio 2005.However, that clich? accurately communicates the idea that building Windows Forms applications in Visual Studio 2005 is better, makes you more productive, and provides you with more fun than doing the same in Visual Studio 2003, not to mention VB6!

2006-01-03 02:00:00   Source: Online Article: New Features In Visual Studio 2005...   Tags: Visual Studio

Improve performance using ADO.NET 2.0 batch update feature

When you use SqlDataAdapter for performing updates, the SqlDataAdapter propagates the updates one by one. That means if there are 100 rows to be updated the SqlDataAdapter will execute 100 separate operations against the database. As you might have guessed this is not efficient while dealing with large number of rows. Fortunately SqlDataAdapter allows you to execute updates in batches. You can specify the batch size i.e. number of rows to be treated as a single batch via UpdateBatchSize property.

Online Article: Get Control and Performance with the Real Time Stylus API

Standard Ink collection is incredibly easy using the Tablet PC SDK.For scenarios that require more control or non-default behavior, default Ink collection may not be the best choice. The Real Time Stylus API provides lower-level, higher performance access to stylus input, making this the API of choice for power-developers.Standard Ink collection is incredibly easy using the Tablet PC SDK.For scenarios that require more control or non-default behavior, default Ink collection may not be the best choice. The Real Time Stylus API provides lower-level, higher performance access to stylus input, making this the API of choice for power-developers.

CLR Inside Out: Base Class Library Performance Tips and Tricks

CLR Inside Out: Base Class Library Performance Tips and Tricks

Concurrent Affairs: Performance-Conscious Thread Synchronization

Concurrent Affairs: Performance-Conscious Thread Synchronization
2005-09-13 03:00:00   Source: Concurrent Affairs: Performance-Conscious Thread...   Tags: Performance

Winsock: Get Closer to the Wire with High-Performance Sockets in .NET

The Win32 Windows Sockets library (Winsock) provides mechanisms to improve the performance of programs that use sockets, and the Microsoft .NET Framework provides a layer over Winsock so that managed applications can communicate over sockets. To use all these layers to write a truly high-performance socket-based application requires a little background information, as Daryn Kiely explains here.
2005-07-12 03:00:00   Source: Winsock: Get Closer to the Wire with High-Performance...   Tags: Internet

{ End Bracket }: Improving Managed DirectX Performance

{ End Bracket }: Improving Managed DirectX Performance
2005-07-12 03:00:00   Source: { End Bracket }: Improving Managed DirectX Performance   Tags: Performance

Reflection: Dodge Common Performance Pitfalls to Craft Speedy Applications

With reflection in .NET, you can load types, understand their members, make decisions about them, and execute, all within the safety of the managed runtime. But to use this power wisely, it's important to understand the associated costs and pitfalls to keep performance impact at a minimum. This article explains how.

Speed: NGen Revs Up Your Performance with Powerful New Features

In the .NET Framework 2.0, NGen has been greatly improved and offers a number of compelling new features to make it easier and faster to deploy high-performance managed applications. This article introduces some of these new features and explains how and when you should use NGen to improve the performance of your apps.

How to Write High-Performance C# Code

Writing code that runs quickly is sometimes at odds with writing code quickly. C.A.R. Hoare, computer science luminary and discoverer of the QuickSort algorithm, famously proclaimed, 'Premature optimization is the root of all evil.' The extreme programming design principle of 'You Aren't Gonna Need It' (YAGNI) argues against implementing any features, including performance optimizations, until they're needed.
2004-09-12 19:00:00   Source: How to Write High-Performance C# Code   Tags: Performance C#