Archives
-
NHibernate Pitfalls: Custom Types and Detecting Changes
This is part of a series of posts about NHibernate Pitfalls. See the entire collection here.
-
ASP.NET Web Forms Extensibility: Handler Factories
An handler factory is the class that implements IHttpHandlerFactory and is responsible for instantiating an handler (IHttpHandler) that will process the current request. This is true for all kinds of web requests, whether they are for ASPX pages, ASMX/SVC web services, ASHX/AXD handlers, or any other kind of file. Also used for restricting access for certain file types, such as Config, Csproj, etc.
-
ASP.NET Web Forms Extensibility: Providers
Updated on August 28th to add the Virtual Path provider. Thanks, Matthew Schaad!
-
NHibernate Pitfalls: QueryOver and Deep Expressions
This is part of a series of posts about NHibernate Pitfalls. See the entire collection here.
-
What Makes SharePoint SharePoint
SharePoint is ASP.NET, it is well known. Yet, sometimes, it may be difficult to understand why/how some features work, because we don’t usually see them in regular ASP.NET development. However, all of them are build upon standard ASP.NET/IIS functionality, which you can easily duplicate on non-SharePoint environments. Here are some clues.
-
Restricting Access to Properties in NHibernate
Update: unlike what I always thought, "protected internal" means "protected" OR "internal", so this technique is really not that necessary. Thanks to all the commenters who brought that to my attention!
-
NHibernate Pitfalls: Inheritance and Proxies
This is part of a series of posts about NHibernate Pitfalls. See the entire collection here.