mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-30 15:29:36 -06:00
orm added comments
This commit is contained in:
@@ -56,7 +56,7 @@ namespace Concerns
|
||||
// To access private serializeRelationVisited()
|
||||
template<SerializedAttributes C, typename Derived_,
|
||||
AllRelationsConcept ...AllRelations_>
|
||||
friend class Support::Stores::SerializeRelationStore;
|
||||
friend class Support::Stores::SerializeRelationStore; // Partial specialization doens't work with friend
|
||||
// To access eagerLoadRelationWithVisitor()
|
||||
friend class Tiny::Builder<Derived>;
|
||||
|
||||
|
||||
@@ -84,11 +84,11 @@ namespace Private
|
||||
{
|
||||
// Used by QueriesRelationships::hasInternalVisited()
|
||||
template<typename T>
|
||||
friend class QueriesRelationships;
|
||||
friend class QueriesRelationships; // Can't use full specialization as we need it for Related models
|
||||
|
||||
// To access private hasInternalVisited()
|
||||
template<typename Derived, typename Related, AllRelationsConcept ...AllRelations>
|
||||
friend class Support::Stores::QueriesRelationshipsStore;
|
||||
friend class Support::Stores::QueriesRelationshipsStore; // Can't use full specialization
|
||||
|
||||
/*! Alias for the Expression. */
|
||||
using Expression = Orm::Query::Expression;
|
||||
|
||||
Reference in New Issue
Block a user