Hello,
Thanks to a couple EDMX /
Domain service, I can access the drawings and records
in the given base.
But I can not do is to add
elements to a table.
Ex: I have a table: myTable => So a
class MyTable is created, and records of this table are
accessible through the service area: myDomainService.MaTables is a
list of MyTable
So to add an item:
MyTable aRecord= new MyTable ();
/ / Information collumns
. . .
/ / Add the line:
myDomaineContext.MaTables.Add (aRecord);
/ / Save.
myDomaineContext.SaveChanges ();
My code is executed without error, but I cant find my line
in the database.
Any idea of a way to fix that?