Hello,
i have a little Problem with LINQ,
I Have a Table for example
ID As int
Text as varchar(100)
fk_otherTable
Now i have a store Procedure to Update the Table
SPInsertIntoTable(Text,Fk_otherTable, anothervalue)
now i have bind the sp with the linq data model
and everything works fine....
Now i want manuallly add the anothervalue .... or manually override the Text ....
But How ?
how can i modify the SPInsertIntoTable ? When the insert command is fired up ?
i tried to get in the function
myLinqDataObject_inserting ...
but how the heck, can i modify the value for the spInsertIntoTable "anothervalue".
I dont want do start the sp again. I Only want to modify the value for ONE Parameter.
Any Idea?
...
Go to the complete details ...