Hey guys,
I am just getting started with netTiers, but I think I may have run into a bug.
I am able to DeepLoad a Listing:
listing = listingService.DeepLoadByListingID(listingID, true,
DeepLoadType.IncludeChildren, typeof(TList<ListingToTag>));
This works fine, and then I try to remove all the child elements from the ListingToTag collection:
while (listing.ListingToTagCollection.Count > 0)
listing.ListingToTagCollection.RemoveAt(0);
Is there a RemoveAll() function that I am missing here?
Then on to the DeepSave call:
listingService.DeepSave(listing, DeepSaveType.IncludeChildren, typeof(TList<ListingToTag>));
This call is saving the Listing data, but it does not remove the ListingToTag elements.
Any ideas why this is not working?
Thanks,
Grier