Archives
-
NHibernate Interceptor for Dynamic Proxy Generation
NHibernate comes along with a nice code generation API that is used, for example, for lazy-loading proxy generation. It can, however, be used for other purposes, such as adding interfaces to the loaded entities, for example, INotifyPropertyChanged coming to my mind. Ayende and José have talked about this in the past, but I decided to publish my own updated version.
-
Calling WCF Web Services from JavaScript
-
New Location for .NET 4 GAC
.NET 4 newcomers may have realised that the old GAC location (%WINDIR%\Assembly) does not contain .NET 4 global assembly cache assemblies. Indeed, they have moved to %WINDIR%\Microsoft.NET\Assembly. It is worth noting that this folder does not use the shell extension that the older one uses, which prevents us from directly looking at the folder's contents, which, IMO, is nice (I mean, the new behavior). The old folder continues to host pre-.NET 4 assemblies.
-
NHibernate 3.1.0 Released
-
Web Developers Can Feel Like Kids in a Candy Store
A very interesting read about the latest Microsoft technologies from Vishal Joshi: Web Developers can feel like Kids in a Candy Store.
-
Local Entities with NHibernate
You may know that Entity Framework Code First has a nice property called Local which lets you iterate through all the entities loaded by the current context (first level cache). This comes handy at times, so I decided to check if it would be difficult to have it on NHibernate. It turned out it is not, so here it is! Another nice addition to an NHibernate toolbox!