I have to iterate through property of one object base type that i get from database and i have to check if any property i snull. Here is some code:
 req = "select * from Ga_Periodes_Absence";
 var resultat = Session.CreateSQLQuery(req).List<object>();
 foreach (var elem in resultat)
 {
     int i = 0;
     i++;
 }
resultat contains list of objects that I want to check if property of any of them is null. Any help please. 
 
     
    