.NET MVC: Best Way To Call Stored Procedure?
Nov 23, 2010
I'm trying to decide which is the best way to call a stored procedure.I'm new to ASP.NET MVC and I've been reading a lot about Linq to SQL and Entity Framework, as well as the Repository Pattern. To be honest, I'm having a hard time understanding the real differences between L2S and EF... but I want to make sure that what I'm building within my application is right.
For right now, I need to properly call stored procedures to: a) save some user information and get a response and, b) grab some inforation for a catalog of products.So far, I've created a Linq to SQL .dbml file, selected the sotred procedure from the Server Explorer and dragged that instance into the .dbml. I'm currently calling the Stored Procedure like so:
MyLinqModel _db = new MyLinqModel();
_db.MyStoredProcedure(args);
I know there's got to be more involved... plus I'm doing this within my controller, which I understand to be not a good practice.
View 4 Replies
Similar Messages:
Dec 9, 2010
Initially, I have tried to use stored procedure. But I changed my mind and preferred to call sql query in codebase with command text. However, it stills tries to find initially-called stored procedure (which is neither called or exists).I think that it is related caching. But I tried it with different browsers it did not work.What might be the reason?
View 4 Replies
May 13, 2010
i want to return output parameter from 1 storeprocedure. into another stored procedure.
View 7 Replies
Sep 1, 2010
I am trying to create the following stored procedure in sql server Lat and Lng are the parameters being passed from c# code behind .But I am not able to create this stored procedureit indicates with error saying undefined column name Lat,Lng
CREATE FUNCTION spherical_distance(@a float, @b float, @c float)
RETURNS float
AS
BEGIN
RETURN ( 6371 * ACOS( COS( (@a/@b) ) * COS( (Lat/@b) ) * COS( ( Lng/@b ) - (@c/@b) ) + SIN( @a/@b ) * SIN( Lat/@b ) ) )
END
sqlda.SelectCommand.CommandText = "select *, spherical_distance( Lat, 57.2958, Lng) as distance
from business
[code]...
View 1 Replies
May 1, 2010
I want to apply other stored procedure select query on result of first stored procedure.
View 1 Replies
Apr 22, 2010
I have a working controller for another stored procedure in the database, but I am trying to test another.
When I request the URL; http://host.com/Map?minLat=0&maxLat=50&minLng=0&maxLng=50
I get the following error message, which is understandable but I can't seem to find out why it occurs;
Procedure or function 'esp_GetPlacesWithinGeoSpan' expects parameter '@MinLat', which was not supplied.
This is the code I am using.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web; [code].....
View 2 Replies
Feb 20, 2011
I have datagrid that binds it's data from database.I have to select,update,insert,Delete data grid using stored procedure.I created a dataset and using dataset storedprocedures for this issue.select stored procedure is works fine,but I have problem in Update,Insert,Delete Storedprocedure.
I created them(storedprocedures) through wizard,But I don' know how to call them.I write the below code in "DataGrid2_UpdateCommand" event but it doesn't work
here is my code:
[Code]....
View 7 Replies
Aug 18, 2010
This an input to a stored porcedure from a web form. My form consists of a text box, 3 listboxes, and 2 more textboxes and a command button. What I need to happen is when the user clicks the command butto it will submit all of the information on the form to the database table. I have a stored procedure in place and the code-behind. What happens though is that the user enters a value into the textbox and hits the enter key and the application will throw an error that expects the next parameter but of course it isn't there. The listboxes postback to grab the data in connection with the value in the first textbox.Here is the code-behind to the aspx page:
[Code]....
The exact error is that it expects parameter @EquipmentType but it is not supplied. It shouldn't be though because the user has not selected anything from the listbox yet. I thought this was straightforward
View 6 Replies
Apr 22, 2010
I am getting exception when calling Stored Procedure using Nhibernate and here is the exception
No persister for: ReleaseDAL.ProgressBars, ReleaseDAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
here is class file
public class ProgressBars
{
public ProgressBars()
{ }
[Code].....
here is my output column from stored procedure its
View 1 Replies
Jan 21, 2011
What is the syntax to call sp in sp ?my inner sp will return two value for outer spn how to get that values ?
View 4 Replies
Sep 1, 2010
I have created a stored procedure shown below ,how will i call this from c# code behind to get the result and results are stored in dataset.
USE [Test]
GO
/****** Object: StoredProcedure [dbo].[tesproc] Script Date: 09/01/2010 13:00:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[tesproc]
-- Add the parameters for the stored procedure here
@a float, @b float, @c float,@d int
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
select Id, Name1,ZipCode,StreetName,StreetNumber,State1,Lat,Lng, ( 6371 * ACOS( COS( (@a/@b) ) * COS( (Lat/@b) ) * COS( ( Lng/@b ) - (@c/@b) ) + SIN( @a/@b ) * SIN( Lat/@b ) ) ) as distance from business_details where ( 6371 * ACOS( COS( (@a/@b) ) * COS( (Lat/@b) ) * COS( ( Lng/@b ) - (@c/@b) ) + SIN( @a/@b ) * SIN( Lat/@b ) ) )<@d
END
If i execute this stored procedure in sql server its working fine with this following call
exec dbo.tesproc 12.9216667 ,57.2958,77.591667,1
View 2 Replies
Jan 20, 2011
I'm pretty much completely new to MVC - I've been playing around with some features for a few months and I'm currently implementing a simple administration panel for a website. I'm a very experienced developer, but the interaction between MVC views and javascript is confusing me a little bit. Here's my scenario:
I have a stored procedure that runs periodically via an agent job in MSSQL. The stored procedure synchronises data from an internal database - it can sometimes (depending on network demand and the amount of data) take a minute or two to run.I'm using LINQ to SQL as my data model.I need to be able to call the Stored Procedure on demand via the click of a button. This "works" if I call it within the code, but obviously I would prefer to make an async call via AJAX after clicking the button, so I can display an "Executing" image or indeterminate progress bar.
At the moment I have the following code in my Controller:
[Code]....
And the following code in my View (Razor syntax):
[Code]....
Which works perfectly fine. However, my brain isn't working this morning, and I'm struggling to figure out how to implement an AJAX call using the integrated JQuery classes?
View 12 Replies
Feb 23, 2011
I would like to know if there is a way to call Oracle stored procedure from inside code?
View 2 Replies
Mar 11, 2010
I have created a stored procedure in Oracle. Now I want to call those procedure in VB.Net
Stored procedure:
[Code]....
How to call this sp in .net?
View 4 Replies
May 13, 2010
How to call a DLL from a stored procedure in SQL 2005?
View 3 Replies
Jan 5, 2011
I am writing stored procedure in Sql server 2008. But in that for first line its giving error but not for the second line its saying that invalid object.
1) SELECT * FROM DEPENDENCY
2) TRUNCATE TABLE DEPE NDENCY
View 11 Replies
Feb 16, 2013
I created stored procedure for insert data in oracle, but I don't know how that procedure in asp.net front and using vb language.
View 1 Replies
Jan 27, 2011
I have a stored procedure name and parameters. The name is variable.
How can I call required stored procedure?
View 4 Replies
May 7, 2015
I have procedure near below i want to call this procedure through "linq"
I use mvc 4 and .edmx
//table//
CREATE TABLE [dbo].[Board](
[BoardID] [uniqueidentifier] NOT NULL,
[Board] [varchar](50) NOT NULL
) ON [PRIMARY]
GO
//Procedure //
create procedure [dbo].[GetAllBoard]
as
select * from Board order by Board
View 1 Replies
Jun 25, 2012
I have one stored procedure, now i want to call it in my entity framework page. How can i do it.
ALTER PROCEDURE [dbo].[select_bool]
-- Add the parameters for the stored procedure here
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
SELECT 1,NEWID() as mynew
END
View 1 Replies
Jul 10, 2010
have made a file as "SQLQuery2.sql"
and a stored procedure named p1one
using sql server managmt stdio express 2005
how to call these query and the stored procedure and store the result in dataset to bind to gridview
View 2 Replies
Aug 4, 2010
Am stuck with this sql stored procedure/asp.net vb.
I want to call the stored procedure and for it to return a true or false if successful ie username and password match.
My stored procedure works fine, and I can call it from my vb, however I stuck as to how I get it to return a result of true or false, 1 , 0. I just get a blank page.
My Codebehind (asp.net vb):
[Code]....
View 1 Replies
Feb 23, 2011
how to call a stored procedure and to display it in a grid view table..
View 3 Replies
Jun 24, 2010
I spent about 60 minutes sifting through search engine listings trying to figure this out and couldn't find an answer, so I decided to make this post for others.
Situation: Using a Stored Procedure to insert a row and return the new row ID, explained here. In my case, I used the Idenity_Scope to return the new row, like so:
[Code]....
Next, following steps as described in link above, went into the dataset XSD page, configured the table adapter to use this stored procedure. By default, it wanted my return value to be set to some value, but I set to allow Null (makes sense, since I don't want to pass the value in, I want to get it out, so it should be null to begin with).
Problem: Where I ran into an issue was in the method to call this stored procedure. The intellisense displayed the prototype it was expecting, basicly like this:
[Code]....
View 2 Replies
Apr 14, 2010
Using VS 2008 and SQL Server 2005.
I have a Gridview control on a page (e.g. customers.aspx) which lists a sub-set of records (e.g. Customers). I also have a SELECT stored procedure which populates the fields in a Formview control on another page (e.g. custDetails.aspx), based on the ID (e.g. CustID int) that is passed to it.
I would like for the user to be able to click on the "View" linkbutton beside one of the Customer records and open up the new page with the data for that Customer populated by the stored procedure.
I have read about using a Datakey from the Gridview control but I'm not sure how that relates to the CustID and also, whether or not I could use it to pass to a stored procedure in another page. Would I need to set a global (i.e. static) variable?
View 4 Replies