Esempio n. 1
0
 public override void NullSafeSet(DbCommand st, object value, int index, bool[] settable, ISessionImplementor session)
 {
     if (settable[0])
     {
         userType.NullSafeSet(st, value, index, session);
     }
 }
Esempio n. 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="cmd"></param>
 /// <param name="value"></param>
 /// <param name="index"></param>
 /// <param name="session"></param>
 public override void NullSafeSet(
     IDbCommand cmd,
     object value,
     int index,
     ISessionImplementor session
     )
 {
     userType.NullSafeSet(cmd, value, index);
 }