Questions tagged [entityobject]
22 questions
0
votes
1 answer
Should I repack the fetched entity object before passing it to the twig template?
I'm using Symfony 4. I have a fetched object $user that has relationships with other entities. I have setup all the getter so I can get other information from that $user object.
$user =…

reddy
- 1,721
- 3
- 16
- 26
0
votes
2 answers
Developing custom authorization service with Entity-Framework and Silverlight WCF RIA-Services?
I am desperately trying to develop with RIA services, but I want the User and Role classes to be entities generated by the EDM designer.
The problem with that is, that I can't inherit from UserBase, since the entity already inherits from…

Shimmy Weitzhandler
- 101,809
- 122
- 424
- 632
0
votes
1 answer
Oracle ADF 11g Validate each entity impl before commiting changes
The code I'm working on is directly manipulating an Entity Object (EO) to insert 5-10k records into the EO's backing table. Yes, it is a bad practice but I don't have time to rewrite the application.
Is there a way, immediately before committing…

IdusOrtus
- 1,005
- 1
- 16
- 24
0
votes
3 answers
How to get Business Rules from Entity Object programatically?
In my Fusion Web Application, I have defined several business rules in entity objects. Everything works fine. The problem is that I can not get them programatically. I have searched through the EntityObjects Impl java class, but there is no method…

Noah Martin
- 1,708
- 9
- 35
- 73
0
votes
1 answer
Access Context/other EntityObjects from partial class
I need to add a new EntityObject to Context when one specific (calculated) property is changed in another EntityObject. There seems to be no access to Context from any EntityObject itself.
For example, my "Employee" partial class has a custom…

Nuts
- 2,755
- 6
- 33
- 78
0
votes
0 answers
Reference external enum type using EntityObject Generator Template
I have the following enum:
namespace Common
{
public enum VehicleType
{
Car=10,
Bike=20
}
}
I have created a reference enum type in EF designer with the name VehicleType referencing Common.VehicleType. The edmx is in the…

Malako
- 534
- 6
- 20
0
votes
3 answers
Add item and update relationship in transitional table in many-to-many database Sql Server
--here was wrong model without association manyTOmany between A-B. corrected is in EDIT2--
A exists in database, B exists in database.
I need only enter new C element with some Properties1 and Properties2 (and update collections of C in existed A…

Saint
- 5,397
- 22
- 63
- 107