Simple save crashes

Issue #89 new
Bergsoft created an issue

Hi

I'm trying to save a newly created record that has a TextBlobbed attribute in it.

I get a crash (without any further info) at line 190 of WriteOperations.cs / InsertWithChildrenRecursive (the moment the element is added to the HashSet, 'objectCache.Add(element);').

The class looks like:

class Game {
        [TextBlob("configBlobbed")]
        [Ignore]
        public Config config
        {
            get; set;
        }

        public string configBlobbed { get; set; }
}

If I manually call UpdateTextBlobProperty() before inserting or replacing, the blob serializing code starts working. Any idea what I'm missing?

Comments (1)

  1. Log in to comment