
| Key: |
COR-725
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Patrick Roemer
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Time Tracking:
|
|
Original Estimate:
|
Not Specified
|
|
|
Remaining Estimate:
|
0h
|
|
|
Time Spent:
|
2.5h
|
|
|
|
| Original IDS Estimate: |
1
|
| Resolution Date: |
22/Aug/07 07:45 PM
|
| Labels: |
|
| Participants: |
Patrick Roemer
|
| Number of Attachments: |
0
|
| Number of Comments: |
2
|
|
class A {
private ArrayList _data;
}
query.descend("_data").descend("_foo");
will return null - should *never* do that.
Workaround:
Query subQuery = query.descend("_data");
subQuery.constrain(B.class);
subQuery.descend("_foo");
|
|
Description
|
class A {
private ArrayList _data;
}
query.descend("_data").descend("_foo");
will return null - should *never* do that.
Workaround:
Query subQuery = query.descend("_data");
subQuery.constrain(B.class);
subQuery.descend("_foo");
|
Show » |
|