mirror of
https://github.com/doctrine/KeyValueStore.git
synced 2026-03-24 08:42:12 +01:00
New Annotation @FieldMap
#13
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @beberlei on GitHub (Oct 10, 2015).
Column stores such as Cassandra and Azure allow to store arbitrary columns for one record. We can support that use case with a
@FieldMapannotation on an array property in each entity.This field map would be populated with all the properties that cannot be mapped to a regular field.
Say the database has the properties:
And an entity:
Then the
countryproperty would be passed into thefields.This should be done outside of the
Storagelayer, by checking for existing properties and building up an array of non mapped fields, then checking if a field map exists to write them too. Otherwise they get skipped (like they are at the moment probably).@beberlei commented on GitHub (Oct 10, 2015):
I jsut looked at the UnitOfWork code, and it just maps the missing columns as "undefined" properties of the Entity itself, so in the example above, the current case would be that
$person->countryisset and saved to the object if necessary.This is a bit magic, but changing to the described feature above would be a BC break.
I am unsure how to proceed, to make it possible working with arbitrary data in a nice way.