Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision f9cef58f

Von Christian Ehringfeld vor fast 9 Jahren hinzugefügt

  • ID f9cef58fafc20e2a2c6b75fae4e0546de9777be3
  • Vorgänger 09b2592d
  • Nachfolger e8d1537c

wip...

Unterschiede anzeigen:

src/entitymanager.cpp
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include <QVariantList>
#include "entitymanager.h"
#include "enums/databasetype.h"
#include "databasemigration.h"
......
const QMetaProperty &property) const {
QVariant var;
var.setValue<QList<QSharedPointer<Entity>>>(list);
property.write(entity.data(), var);
property.write(entity.data(),var);
}
void EntityManager::addEntityToListProperty(const QSharedPointer<Entity>
......
q.bindValue(1, item->getProperty(ptr->getPrimaryKey()));
this->schema->getDatabase()->exec(q);
if (prop.isReadable()) {
this->addEntityToListProperty(entity, ptr, prop);
this->addEntityToListProperty(ptr, entity, prop);
} else {
qDebug() << "Query exec for many to many relation failed." <<
q.lastError().text();
......
secEntityPtr));
if (!refresh
&& this->cache.contains(id.toLongLong(), secEntityPtr->getClassname())) {
entities.append(this->cache.get(id.toLongLong(), secEntityPtr->getClassname()));
auto entity2 = this->cache.get(id.toLongLong(), secEntityPtr->getClassname());
entities.append(entity2);
//this->addEntityToListProperty(entity,entity2,property);
} else {
entities.append(this->findById(id.toLongLong(), secEntityPtr->getClassname()));
auto entity2 = this->findById(id.toLongLong(), secEntityPtr->getClassname());
//this->addEntityToListProperty(entity,entity2,property);
entities.append(entity2);
}
}
if(!entities.isEmpty()) {
this->setListProperty(entity, entities, property);
}
} else {
qDebug() << "MANY_TO_MANY Table " << tblName << " not exists";
}

Auch abrufbar als: Unified diff