Exemple #1
0
        public RowGuidColTableInsert CreateInsertStoredProcedure(Record record)
        {
            var sp = new RowGuidColTableInsert();

            if (record == null)
            {
                return(sp);
            }
            sp.RowGuidColumn  = record.RowGuidColumn;
            sp.NVarCharColumn = record.NVarCharColumn;
            return(sp);
        }
Exemple #2
0
        public RowGuidColTableInsert CreateInsertStoredProcedure(Record record)
        {
            var sp = new RowGuidColTableInsert();

            ((IDatabaseContext)sp).TransactionKey = this.TransactionKey;
            if (record == null)
            {
                return(sp);
            }
            sp.RowGuidColumn  = record.RowGuidColumn;
            sp.NVarCharColumn = record.NVarCharColumn;
            return(sp);
        }