Tag Archives: Development

Introduction to NHibernate Session at Jordev Was Good

The feedback was very good, and I was glad that everybody liked it. Jordev is really moving ahead, and I am very excited being part of it 🙂 Below is the slide show (it’s an enhanced version from my previous one): [slideshare id=821222&doc=introductiontonhibernate-1228487480885456-9&w=425] Code is the same of the previous one which you can download… Read More »

How we decide what to have for lunch

Do you go through the same, time-consuming, frustrating discussion with your colleagues when you want to decide what to have for lunch? well…this is exactly what we have been going through where I work. To solve the problem (partially, because humans can never totally agree! ), I made a small, quick and dirty web application; LunchPoll.… Read More »

Are code comments important?

From the very first day I have heard about Agile development and I have been hearing things like “code comments are not such a good thing” The main idea behind that is that the code should be self explanatory; giving functions good names and splitting concerns into different functions. But what about the “why”; why… Read More »

Columns’ case-sensitivity in NHibernate

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 »

What is next

Ok, now I am facing a hard decision; what to do next in my technical life? In order to reach for better decision, I drew a mind map using this wonderful online tool Mindomo, it’s like  the following: Those nodes are the things I think I want to study/do most. I marked the most important… Read More »

Builds while deployment

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 »