Beispiel #1
0
        public override int ExecuteInternal()
        {
            MgPropertyCollection props = new MgPropertyCollection();

            MgFeatureCommandUtility.Populate(props, this.ValuesToUpdate);
            return(this.ConnImpl.UpdateFeatures(new MgResourceIdentifier(this.FeatureSourceId), this.ClassName, props, this.Filter));
        }
Beispiel #2
0
        protected override void ExecuteInternal()
        {
            MgPropertyCollection props = new MgPropertyCollection();

            MgFeatureCommandUtility.Populate(props, this.RecordToInsert);
            this.ConnImpl.InsertFeatures(new MgResourceIdentifier(this.FeatureSourceId), this.ClassName, props);
        }