Hi,
I m trying to build a web site which will use ADO .NET ENTITY DATA MODEL (.net framework 3.5)for database interactions. I have added some stored procedures to the entity model. But I can only access those stored procedures which returns entity set. All other SPs which return "scalar" or "none" are not accessible in the code.
This procedure was simple and straight forward in LINQ to SQL. Where we could access all the stored procedures (irrespective of return type) directly in our code behind as methods.
Can we extend the entity classes to expose those SPs to the code behind. Or is there any other solution?
Please help !!