Click here to Skip to main content
15,902,835 members

Comments by Ryan Gamal (Top 9 by date)

Ryan Gamal 18-Jul-11 11:51am View    
Unfortunately WCf Data services don't work like that, you pass your data to a url, and the service (with the help of an EF entity model) saves it away itself. There are no stored procedures and no code to perform the save. So thus, where would you put a transaction?
Ryan Gamal 18-Jul-11 11:44am View    
This is currently under investigation by the product team @ Microsoft...

http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/f28eb9da-8e76-46c0-993f-10be01081fed
Ryan Gamal 13-Jun-11 5:27am View    
Thanks for the info. Because I'm using EF4.1 Code First approach, the metadata artifacts don't in fact exist at compile time. Rather than using edmgen in the build, I am using the visual studio EF power tools to generate the pre-compiled view and then this is added to the project at design time.

Thus, the pre-compiled views are generated at design time only and are not regenerated by the team build.
Ryan Gamal 7-Jun-11 6:58am View    
In your gridview your label has the id "gdvlbldownloadcount" but in your databound event you are trying to assign to a label with ID "lblDownloadCount"
Ryan Gamal 17-Jan-11 5:36am View    
Deleted
Reason for my vote of 2
If all calls to the method have to use the value in the name attribute instead of the method name, then what is the point of overloading at all?