I've just recently been using the EF just because I thought it was simplier and faster to have a DAL that way...but it's a pain in the ....s
After solving severam problems I can't sucessfully updade dada from my tables in a sql database.
I have a aspx form that edits some fieds in the entity object (System.Data.Objects.DataClasses.EntityObject) and then I call the EntitiesContext.SaveChanges()...and it actually saves changes. But in the WRONG way.
For instance if the forma has this data: Name:abcd Number:1234
the saved data will be Name:a Number:1
Please don't send me begginers documentation I've seen it all! And yes... I have the Store procedures created and I've recreated the .edmx several times!
Thank you.