Hello.
I have two tables with 1:1 relationship (ParserSourceSection & ParserSourceSectionTemplate). I am creating this entities.
ParserSourceSectionEntity section = new ParserSourceSectionEntity();
section.Name = "qwerty";
adapter.SaveEntity(section, true);
ParserSourceSectionTemplateEntity template = new ParserSourceSectionTemplateEntity(section.Id);
adapter.SaveEntity(template, true);
At the last save i have ORMQueryConstructorException "The insert query doesn't contain any fields."