On inserting a record:
Poster_ratings prItem = new Poster_ratings
{
poster_id = posterId,
rating = rating,
email = email,
name = name,
event_id = eventId,
id = GetNextID()
};
entity.AddToPoster_ratings(prItem);
entity.SaveChanges();
I get the error that server-generated values are not supported..
I'm using Sql compact 3.5 (highest version supported by MS Sync Framework). I already read this post and set 'setStoreGeneratedPattern' to none for this table but this didn't help either, I keep getting the same error..What should I do to resolve this?
Greets & Thanks in advance