Author Archives: Emad Alashi

New laptop

By | July 13, 2008

This is my first post from my new laptop HP Pavilion dv 6755ee 😀 Overall, I am happy with what I am experiencing till now, except for: 1- The fans opening is placed at the bottom of the laptop, which causing it to go on high temperature fast! 2- There is something wrong about the text… Read More »

Using FeedBurner

By | July 5, 2008

I have been trying to figure out how the stats that WordPress provide works while hosting my blog, I FAILED!…or did they? It was not a straightforward thing, I would click on a stat number that says I had certain number of views on one post today, I would click on it to see the chart is empty :S. Anyway, I… Read More »

My “Introduction to NHibernate” presentation and slides

By | July 2, 2008

I have delivered the presentation I talked about in my previous post here. Actually it was pretty simple and straightforward, the slides them selves don’t have code content; all the code was shown in VS directly (I always found it better to see the code in its really environment to better understand). The attendees were… Read More »

Columns’ case-sensitivity in NHibernate

By | June 28, 2008

The other day I wanted to create an HQL query to retrieve data from one object (WorkOrderFault) that has many-to-many relation with another. so I created the following: ISession session = NHibernateOrmSessionFactory.CurrentNHibernateSession; IQuery query = session.CreateQuery(    “select wof from WorkOrderFault wof join wof.WorkOrderTechnicians as tech where tech.Id = 43334”); IList<WorkOrderFault> objects = query.List<WorkOrderFault>(); The query… Read More »

Builds while deployment

By | June 15, 2008

In my company, we are working on this big GRP project, lots of pages, projects and workflows, soon we are delivering some modules to the customer. So today, while trying to test a workflow that we have been working for days, something weird happened; the users of the workflow didn’t exist anymore!! After searching for a… Read More »