Exemple #1
0
        public void Bind(DbCommand command, IList <Parameter> sqlQueryParametersList, QueryParameters queryParameters, ISessionImplementor session)
        {
            int position = sqlQueryParametersList.GetEffectiveParameterLocations(IdBackTrack).Single();             // version parameter can't appear more than once

            type.NullSafeSet(command, type.Seed(session), position, session);
        }
 public int Bind(IDbCommand statement, QueryParameters qp, ISessionImplementor session, int position)
 {
     type.NullSafeSet(statement, type.Seed(session), position, session);
     return(1);
 }