Hi,
Using self-service, 2.6.
As an experiment, I tried to save an entity with most of its non-nullable fields unpopulated. I was expecting either an exception or a row with a bunch of empty defaults.
PortletsEntity p = new PortletsEntity(Guid.NewGuid());
bool ok = p.Save();
Nothing happens. No row in the DB. No exception. But it returns true.
When I examine the entity "p" in the visualizer following the "new" statement, it has valid enough data that it should insert (empty guids in guid fields, empty strings in string fields, zeros in ints, etc).
To say that this is a serious problem would be an understatement. If I can't trust it to either save my data or tell me there was a problem, I can't use it.
Any ideas on what might be happening?
-Al