Hi, I'm having troubles with DLINQ since three days. Actually I can't insert, or even delete (the basics) data in the database. I followed that tutorial : here Here are my classes: Category { ..... } Type { EntityRef Category EntitySet Properties } Property { EntityRef Type } Here is how i proceed the insert: ... Context db = Context.getInstance(); /// I use a singleton to have an unique instance db.Properties.InsertOnSubmit(newprop); db.SubmitChanges(); I do the same for saving Types... then I get
Read More...