Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Nullable embedded objects. #1275

Closed
wants to merge 11 commits into from
Closed

Commits on Jan 21, 2015

  1. Initial work of nullable embedded objects.

    There's a lot of things to be improved (mostly on UnitOfWork), but it's fully working with basic tests.
    The idea was to have a simple (and clean) way to override the nullable property of embedded objects, so I've
    added the nullable attribute on the Embedded annotation and it have 3 possible values:
    
    - NULL: The nullable option that was defined on the attributes of the embeddable class won't be overriden;
    - TRUE: All attributes of the embeddable class will be marked as nullable;
    - FALSE: All attributes of the embeddable class will be marked as non-nullable.
    
    The usage is quite simple and can be seen at the ValueObjectsTest::testCRUDOfNullableEmbedded() test case.
    lcobucci committed Jan 21, 2015
    Configuration menu
    Copy the full SHA
    74d50f7 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2015

  1. Configuration menu
    Copy the full SHA
    4ec25c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    93300bc View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2015

  1. Moving the responsibility of using the column data or not to fill the…

    … entity to the class metadata.
    lcobucci committed Jan 25, 2015
    Configuration menu
    Copy the full SHA
    9cc7529 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2015

  1. Configuration menu
    Copy the full SHA
    40dfa3f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6340eec View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f48d05e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    609d492 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2015

  1. Configuration menu
    Copy the full SHA
    71d3580 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2015

  1. Configuration menu
    Copy the full SHA
    6e57134 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d27c5b1 View commit details
    Browse the repository at this point in the history