January 2009 - Posts

4
Comments

Extend ASP.NET MVC for Asynchronous Action by JeffreyZhao

The current version of ASP.NET MVC doesn’t support async actions and that’s just ‘the missing key feature’ I mentioned before. These days I’m preparing for the session in the coming .NET conference in Shanghai (that Jeffrey Richter would also attend) and I think it’s better to release a better solution at that time: straightforward, rather full-featured and light-weighted – the core funtion contains only about 200 lines of codes, which means it maximize the usage of existing framework functions to make the solution more stable, efficient and backward-compatible....
Filed under: , , , ,
8
Comments

Fast Reflection Library by JeffreyZhao

Reflection is one of the most important features of .NET platform. The way of accessing/assigning a property or invoking a method dynamically is widely used by numerous projects. As we all know, invoke-by-reflection is much less efficient than direct access. FastReflectionLib provide the same as part of the refection features like executing method dynamically but give simple and faster implementations. It can be use as the foundation of reflection-based scenarios such as ORM framework....
Filed under: , ,
More Posts