static public void Delete(System.Int32 childId, System.Int32 parentKeyId, System.String parentKeySub)
        {
            var obj = new ReverseCompositeChild();

            obj.ChildId      = childId;
            obj.ParentKeyId  = parentKeyId;
            obj.ParentKeySub = parentKeySub;
            obj.AcceptChanges();
            obj.MarkAsDeleted();
            obj.Save();
        }
 public ReverseCompositeChildProxyStub(ReverseCompositeChild obj, bool dirtyColumnsOnly)
 {
     theEntity             = this.entity = obj;
     this.dirtyColumnsOnly = dirtyColumnsOnly;
 }
 public ReverseCompositeChildProxyStub(ReverseCompositeChild obj)
 {
     theEntity = this.entity = obj;
 }