Browse by Tags
All Tags »
.NET (
RSS)
Good news: WIF was released today! Bad news: it requires Windows 7 or Windows Server 2008... Get it here and the SDK here . If you just want to know what it is, read this .
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...
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...
Get it here . Intersting to note, the API documentation is now available in CHM format.
Get it from here . Read about this release on its site .
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>...
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...
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...
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...
(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...
More Posts
Next page »