I have two table BuildGroup and table DocumentTemplate. DocumentTemplate table has BuildGroupId as foreign key which is nullable. I certain senario I update BuildGroupId in DocumentTemplate table. 
Code:
public bool EditDocTempForBldGrp(int docId, int bldGrpId)
        {
            try
            {
                using (ISession session = Document.OpenSession())
                {
                    using (ITransaction transaction = session.BeginTransaction())
                    {
                        HSDocumentTemplate objDocBO = new HSDocumentTemplate();
                        objDocBO = GetDocumentDetailsById(docId);
                        HSBuildGroup objBldGrp = new HSBuildGroup();
                        if (bldGrpId != 0)
                        {                            
                            objBldGrp.Id = bldGrpId;
                        }
                        else
                        {
                            //int ? bldid = null;
                            //objDocBO.HSBuildGroup.Id = null;
                            //objDocBO.HSBuildGroup.Id = DBNull.Value;
                            //objDocBO.HSBuildGroup.Id = -1;
                        }
                        objDocBO.HSBuildGroup = objBldGrp;
                        session.Update(objDocBO);
                        transaction.Commit();
                    }
                }
                return true;
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
                return false;
            }
           
        }
In certain other senario I need to set BuildGroupId in DocumentTemplate table again to dbnull.value. I tried with different cases as in else block. It giving the erro : Cannot implicitly convert type 'System.DBNull' to 'int'	
How can I update a forgein key value with NULL? 
Any help will be appriciated.