Instance Subscript
subscript(dynamicMember:)
@dynamicMemberLookup support. The implementation of this subscript is provided automatically and should not be overriden by conforming types. See subscript(dynamicMember:) for details.subscript<Field>(dynamicMember keyPath: KeyPath<Self.Model, Field>) -> AliasedField<Self, Field> where Field : Property, Self.Model == Field.Model { get }
Default Implementations
ModelAlias Implementations
subscript(dynamicMember:)An@dynamicMemberLookupsubscript which access to the projected values of individual properties ofself.modelwithout having to actually add.modelto each usage. TheAliasedFieldhelper type further ensures that the alias propagates correctly through further helpers and subsysems, most particularly.with()closures in a query for eager- loading.subscript(dynamicMember:)An@dynamicMemberLookupsubscript which enables direct access to the values of individual properties ofself.modelwithout having to actually add.modelto each usage.