Lightweight 0.1.0
|
Represents a one-to-one relationship through a join table. More...
#include <HasOneThrough.hpp>
Public Types | |
using | ThroughRecord = ThroughTable |
The record type of the "through" side of the relationship. | |
using | ReferencedRecord = OtherTable |
The record type of the "Other" side of the relationship. | |
Public Member Functions | |
LIGHTWEIGHT_FORCE_INLINE constexpr void | EmplaceRecord (std::shared_ptr< ReferencedRecord > record) |
Emplaces the given record into this relationship. | |
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord & | Record () noexcept |
Retrieves the record in this relationship. | |
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord const & | Record () const noexcept |
Retrieves the record in this relationship. | |
LIGHTWEIGHT_FORCE_INLINE constexpr bool | IsLoaded () const noexcept |
Checks if the record is loaded. | |
LIGHTWEIGHT_FORCE_INLINE void | Unload () noexcept |
Unloads the record from memory. | |
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord & | operator* () noexcept |
Retrieves the record in this relationship. | |
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord const & | operator* () const noexcept |
Retrieves the record in this relationship. | |
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord * | operator-> () noexcept |
Retrieves the record in this relationship. | |
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord const * | operator-> () const noexcept |
Retrieves the record in this relationship. | |
std::weak_ordering | operator<=> (HasOneThrough const &other) const noexcept=default |
void | SetAutoLoader (Loader loader) |
Used internally to configure on-demand loading of the record. | |
Represents a one-to-one relationship through a join table.
The OtherField
parameter is the field in the join table that references the other record. The ThroughField
parameter is the field in the join table that references the current record.
Definition at line 20 of file HasOneThrough.hpp.
using HasOneThrough< OtherTable, ThroughTable >::ThroughRecord = ThroughTable |
The record type of the "through" side of the relationship.
Definition at line 24 of file HasOneThrough.hpp.
using HasOneThrough< OtherTable, ThroughTable >::ReferencedRecord = OtherTable |
The record type of the "Other" side of the relationship.
Definition at line 27 of file HasOneThrough.hpp.
|
inlineconstexpr |
Emplaces the given record into this relationship.
Definition at line 32 of file HasOneThrough.hpp.
|
inlineconstexprnoexcept |
Retrieves the record in this relationship.
Definition at line 35 of file HasOneThrough.hpp.
|
inlineconstexprnoexcept |
Retrieves the record in this relationship.
Definition at line 38 of file HasOneThrough.hpp.
|
inlineconstexprnoexcept |
Checks if the record is loaded.
Definition at line 41 of file HasOneThrough.hpp.
|
inlinenoexcept |
Unloads the record from memory.
Definition at line 44 of file HasOneThrough.hpp.
|
inlineconstexprnoexcept |
Retrieves the record in this relationship.
Definition at line 48 of file HasOneThrough.hpp.
|
inlineconstexprnoexcept |
Retrieves the record in this relationship.
Definition at line 52 of file HasOneThrough.hpp.
|
inlineconstexprnoexcept |
Retrieves the record in this relationship.
Definition at line 56 of file HasOneThrough.hpp.
|
inlineconstexprnoexcept |
Retrieves the record in this relationship.
Definition at line 60 of file HasOneThrough.hpp.
|
inline |
Used internally to configure on-demand loading of the record.
Definition at line 71 of file HasOneThrough.hpp.
Referenced by DataMapper::ConfigureRelationAutoLoading().