karishma-tirthani / odata4j

Automatically exported from code.google.com/p/odata4j
0 stars 0 forks source link

JPAProducer support for appengine / datanucleus-appengine plugin #149

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Try to use JPAProducer with appengine (datanucleus-appengine plugin version 
2.0)
2. Entities are created but when trying to address a specific entity for get, 
update or delete, an exception is thrown by TypeConverter saying "Unable to 
convert Long into LongIdentity".

What version of the product are you using? On what operating system?
0.6.0

The very simple example class bellow will result in correct creation but 
failure to get, update or delete as stated above.

@Entity
public class User {

    @Id
    private Long id;

    private String name;
(...)

Original issue reported on code.google.com by miguel.ans@gmail.com on 23 Mar 2012 at 8:26

GoogleCodeExporter commented 8 years ago
This issue still occurs in 0.7.
Any update on its correction?

Original comment by miguel.ans@gmail.com on 22 Nov 2012 at 6:03