Sometimes when using the Entity Framework we decide to encapsulate a complicated piece of SQL into a stored procedure and call it directly from your code. But how to you extract the result of the Stored Proc if it returns a combination of columns from different tables? Consider the following Stored Proc which returns a […]
Monthly Archives: February 2011
Code for Keeps:- Store Retrieve image to/from Database
One of our early blogs was about extracting images from databases, websites and showing them on the screen. The blog(see it here) dealt with a) Retrieving images from the www b) Retrieving images from the database when retrieved as a binary. We realized there are some more scenarios to take care of here c) Save […]
WPF/Silverlight Canvas Vs Single Cell Grid
I’ve often been asked the question of when should we use a Canvas and when a Single Celled Grid…. This is a snapshot of the an MSDN article . Our inputs are marked as [Cennest:]. The source can be read at http://msdn.microsoft.com/en-us/magazine/ff646962.aspx A single-cell Grid is just like a regular Grid except without any row […]