Development With A Dot

Blog on development in general, and specifically on .NET

Browse by Tags

All Tags » .NET (RSS)
Debugging ADO.NET Data Services
Debugging ADO.NET Data Services can be tricky, not because of the web service part but because of the underlying persistence layer. You can include the exception details on the error page by including this on the DataService<T> class declaration...
ADO.NET Data Service Interceptors
There are two possible interceptions you can perform on an ADO.NET Data Service: Query interception: intercept a query made for an entity in order to enforce a restriction; Change interception: intercept a request for updating an entity and possibly cancel...
NHibernate 2.1.1 Released
Get it here . Intersting to note, the API documentation is now available in CHM format.
Microsoft Sync Framework SDK 2.0 Released
Get it from here . Read about this release on its site .
ADO.NET Data Services and NHibernate
With the arrival of the LINQ provider for NHibernate, NHibernate now supports ADO.NET Data Services. There are some restrictions, however: Relations must be entities or simple collections of entities (Entity, IList, IList<T>), not sets (ISet<T>...
Manually Indexing an Entity with NHibernate Search
Updated: thanks, Ayende! NHibernate Search, which you can get in source format with SVN from the NHContrib trunk here , is an API that integrates NHibernate with the popular indexer Lucene.NET. Out of the box, it indexes the properties from your entities...
Finding Dirty Properties in NHibernate
Sometimes there may be a need for finding out if a specific entity, or a property of that entity, was changed, or, better yet, the original value for that property. Below is a set of extensions for ISession that give you just that. public static class...
.NET Serializers, part 2
There were some things left (well, a lot, actually) from my previous article on .NET serializers . One of these things was the ability to have serializers call specific methods before or after serialization. This can be achieved in two ways: Through implementation...
.NET Serializers
(UPDATED) As of version 3.5 SP1, .NET comes along with the following serializers: System.Runtime.Serialization.Formatters.Binary.BinaryFormatte r : binary serializer used in .NET Remoting, type information is included, understands System.Runtime.Serialization...
Custom Binding With EntityDataSource
Here's a common scenario: you are using an EntityDataSource control which you are binding to a data control, perhaps a ListView , DataGrid , DataList , Repeater , or GridView . The problem is, you want to do some custom binding. This happens, for example...
More Posts Next page »