Como: Executar um procedimento armazenado parametrizado usando EntityCommand
Este tópico mostra como executar um procedimento armazenado parametrizado usando a EntityCommand classe.
Para executar o código neste exemplo
Adicione o Modelo de Escola ao seu projeto e configure seu projeto para usar o Entity Framework. Para obter mais informações, consulte Como usar o Assistente de Modelo de Dados de Entidade.
Na página de código do seu aplicativo, adicione as seguintes
using
diretivas (Imports
no Visual Basic):using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Data.EntityClient; using System.Data.Metadata.Edm;
Imports System.Collections.Generic Imports System.Collections Imports System.Data.Common Imports System.Data Imports System.IO Imports System.Data.SqlClient Imports System.Data.EntityClient Imports System.Data.Metadata.Edm
Importe o
GetStudentGrades
procedimento armazenado e especifiqueCourseGrade
entidades como um tipo de retorno. Para obter informações sobre como importar um procedimento armazenado, consulte Como importar um procedimento armazenado.
Exemplo
O código a seguir executa o GetStudentGrades
procedimento armazenado onde StudentId
é um parâmetro necessário. Os resultados são então lidos por um EntityDataReaderarquivo .
using (EntityConnection conn =
new EntityConnection("name=SchoolEntities"))
{
conn.Open();
// Create an EntityCommand.
using (EntityCommand cmd = conn.CreateCommand())
{
cmd.CommandText = "SchoolEntities.GetStudentGrades";
cmd.CommandType = CommandType.StoredProcedure;
EntityParameter param = new EntityParameter();
param.Value = 2;
param.ParameterName = "StudentID";
cmd.Parameters.Add(param);
// Execute the command.
using (EntityDataReader rdr =
cmd.ExecuteReader(CommandBehavior.SequentialAccess))
{
// Read the results returned by the stored procedure.
while (rdr.Read())
{
Console.WriteLine("ID: {0} Grade: {1}", rdr["StudentID"], rdr["Grade"]);
}
}
}
conn.Close();
}
Using conn As New EntityConnection("name=SchoolEntities")
conn.Open()
' Create an EntityCommand.
Using cmd As EntityCommand = conn.CreateCommand()
cmd.CommandText = "SchoolEntities.GetStudentGrades"
cmd.CommandType = CommandType.StoredProcedure
Dim param As New EntityParameter()
param.Value = 2
param.ParameterName = "StudentID"
cmd.Parameters.Add(param)
' Execute the command.
Using rdr As EntityDataReader = cmd.ExecuteReader(CommandBehavior.SequentialAccess)
' Read the results returned by the stored procedure.
While rdr.Read()
Console.WriteLine("ID: {0} Grade: {1}", rdr("StudentID"), rdr("Grade"))
End While
End Using
End Using
conn.Close()
End Using