Hi,
I have a table which has a composite primary key.
as its already know that CRUD gen doesn’t work with composite primary keys.
could someone pls suggest how the model code should look like if it would have
supported primary composite key…?
suppose table name is A and key are Bid, Cid
PRIMARY KEY (Bid
, Cid),
These 2 are foreign key from table B and C respectively
How should Relations method look like…?
-Big O