raquila, take a look at this post:
http://forums.asp.net/1048212/ShowPost.aspxIt's impossible to use the INSERT, UPDATE or DELETE methods assoicated with an ObjectDataSource with strongly typed datasets primarily because of the simple following reason:
"A workaround for this problem could be if there was any way to make the strong-typed dataset generator (Built into VSNET 2005) to include a default constructor for the strong-typed DataRow class that is generated with the dataset." - this was included in another post I found.
You have to have the default consturctor in the typed Dataset class that the ObjectDatasource requires, or else it can't work. Is this going to be fixed with the RTM version of VS2005?