本文整理汇总了C#中StoreProcedure类的典型用法代码示例。如果您正苦于以下问题:C# StoreProcedure类的具体用法?C# StoreProcedure怎么用?C# StoreProcedure使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
StoreProcedure类属于命名空间,在下文中一共展示了StoreProcedure类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoadTreeView
/// <summary>
/// Metodo que permite cargar los StoreProcedures en el arbol.
/// </summary>
public void LoadTreeView()
{
if (_StoreProcedures == null)
LoadFromDataBase();
ProgressBar.Visible = true;
ProgressBar.Maximum = _StoreProcedures.Count + 1;
ProgressBar.Value = 0;
TreeViewHelper.AddElementEvent += new AddElementHandler(TreeViewHelper_AddElementEvent);
lblTreeViewSelected.Text = "Generando arbol..";
if (_StoreProcedures == null)
{
this.tvwChilds.Nodes.Clear();
TreeViewHelper.AddElementEvent -= new AddElementHandler(TreeViewHelper_AddElementEvent);
return;
}
if (_StoreProcedures.Count == 0)
{
this.tvwChilds.Nodes.Clear();
TreeViewHelper.AddElementEvent -= new AddElementHandler(TreeViewHelper_AddElementEvent);
return;
}
TreeViewHelper.LoadTreeView(this.tvwChilds, _StoreProcedures);
_SelectedStoreProcedure = _StoreProcedures[0];
_SelectedStoreProcedureName = _StoreProcedures[0].Name;
lblTreeViewSelected.Text = String.Empty;
ProgressBar.Visible = false;
ProgressBar.Value = 0;
}
示例2: GetAllOfertasByUsuario
public static List<HistoryOferta> GetAllOfertasByUsuario(Usuario user)
{
var param = new List<SPParameter> { new SPParameter("idUsuario", user.ID),
new SPParameter("Fecha_hoy", ConfigurationVariables.FechaSistema)};
var sp = new StoreProcedure(DataBaseConst.Oferta.SPGetHistoryOfertasByUsuario, param);
return sp.ExecuteReader<HistoryOferta>();
}
示例3: GetAllActiveByParameters
public static List<Publicacion> GetAllActiveByParameters(String description, List<Rubro> lstRubros)
{
//Obtengo la publicacion que se encuentren activas y cumplan ciertos criterios (busqueda exacta)
var param = new List<SPParameter>
{
new SPParameter("Fecha_hoy", Configuration.ConfigurationVariables.FechaSistema),
new SPParameter("Descripcion", description)
};
var sp = new StoreProcedure(DataBaseConst.Publicacion.SPGetAllActiveByParameters, param);
var publications = sp.ExecuteReader<Publicacion>();
if (publications == null)
return null;
var result = new List<Publicacion>();
foreach (var pub in publications)
{
pub.GetObjectsById();
if (pub.Rubros.Count == lstRubros.Count && pub.Rubros.Select(i => i.ID).Intersect(lstRubros.Select(j => j.ID)).Count() == pub.Rubros.Count)
result.Add(pub);
}
return result;
}
示例4: GetByUser
public static List<Rol> GetByUser(Usuario user)
{
//Obtengo la lista de roles asignadas a determinado usuario
var param = new List<SPParameter> { new SPParameter("ID_User", user.ID) };
var sp = new StoreProcedure(DataBaseConst.Rol.SPGetAllRolByUser, param);
return sp.ExecuteReader<Rol>();
}
示例5: GetAll
public static List<Funcionalidad> GetAll()
{
//Obtengo todas las funcionalidades almacenadas en la base de datos
var sp = new StoreProcedure(DataBaseConst.Funcionalidad.SPGetAllFuncionalidad);
//Retorno una lista de Funcionalidad a partir de un ExecuteReader
return sp.ExecuteReader<Funcionalidad>();
}
示例6: ObtenerTodas
public static object ObtenerTodas()
{
//Obtengo todas las funcionalidades almacenadas en la base de datos
var sp = new StoreProcedure(DBQueries.Funcionalidad.SPGetFuncionalidades);
//Retorno una lista de Funcionalidad a partir de un ExecuteReader
return sp.ExecuteReader<Funcionalidad>();
}
示例7: GetUltimoNumeroFactura
public static int GetUltimoNumeroFactura(SqlTransaction transaction)
{
var sp = new StoreProcedure(DataBaseConst.Factura.SPGetUltimoNumeroFactura);
var numeroFactura = Convert.ToInt32(sp.ExecuteScalar(transaction));
return numeroFactura;
}
示例8: ObtenerServiciosDeRuta
public static List<Servicio> ObtenerServiciosDeRuta(int origen,int destino,string matricula)
{
var param = new List<SPParameter> {
new SPParameter("ID_Ciudad_Origen", origen),
new SPParameter("ID_Ciudad_Destino", destino),
new SPParameter("Matricula", matricula) };
var sp = new StoreProcedure(DBQueries.Servicio.SPObtenerServiciosDeRuta,param);
return sp.ExecuteReader<Servicio>();
}
示例9: GetByRole
public static List<Funcionalidad> GetByRole(Rol role, SqlTransaction transaction)
{
//Obtengo todas las funcionalidades asociadas a determinado rol (transaccionado)
var param = new List<SPParameter> { new SPParameter("ID_Rol", role.ID) };
var sp = new StoreProcedure(DataBaseConst.Funcionalidad.SPGetAllFuncionalidadByRol, param, transaction);
//Retorno una lista de Funcionalidad a partir de un ExecuteReader transaccionado
return sp.ExecuteReaderTransactioned<Funcionalidad>(transaction);
}
示例10: ObtenerPorRol
public static List<Funcionalidad> ObtenerPorRol(Rol rol)
{
//Obtengo todas las funcionalidades asociadas a determinado rol
var param = new List<SPParameter> { new SPParameter("ID_Rol", rol.ID) };
var sp = new StoreProcedure(DBQueries.Funcionalidad.SPGetFuncionalidadesPorRol, param);
//Retorno una lista de Funcionalidad a partir de un ExecuteReader
return sp.ExecuteReader<Funcionalidad>();
}
示例11: GetAllBusinessByParametersLike
public static List<Empresa> GetAllBusinessByParametersLike(EmpresaFilters filters)
{
var param = new List<SPParameter> { new SPParameter("Razon_Social", filters.RazonSocial ?? (object)DBNull.Value),
new SPParameter("Cuit", filters.Cuit ?? (object)DBNull.Value),
new SPParameter("Email", filters.Email ?? (object)DBNull.Value)};
var sp = new StoreProcedure(DataBaseConst.Empresa.SPGetAllBusinessByParametersLike, param);
return sp.ExecuteReader<Empresa>();
}
示例12: InhabilitarUser
public static void InhabilitarUser(Usuario user)
{
var param = new List<SPParameter>
{
new SPParameter("ID_User", user.ID)
};
var sp = new StoreProcedure(DBQueries.Usuario.SPInhabilitarUsuario, param);
sp.ExecuteNonQuery(null);
}
示例13: LimpiarIntentos
public static void LimpiarIntentos(Usuario user)
{
var param = new List<SPParameter>
{
new SPParameter("ID_User", user.ID)
};
var sp = new StoreProcedure(DBQueries.Usuario.SPLimpiarIntentos, param);
sp.ExecuteNonQuery(null);
}
示例14: ActualizarFechaLlegada
public static void ActualizarFechaLlegada(int idViaje, DateTime fechaLlegada)
{
var param = new List<SPParameter>
{
new SPParameter("ID", idViaje),
new SPParameter("FechaLlegada", fechaLlegada),
};
var sp = new StoreProcedure(DBQueries.Viaje.SPActualizarFechaLlegada, param);
sp.ExecuteNonQuery(null);
}
示例15: InsertarCiudad
public static int InsertarCiudad(Ciudad ciudadNueva)
{
var param = new List<SPParameter>
{
new SPParameter("Nombre_Ciudad", ciudadNueva.Nombre),
};
var sp= new StoreProcedure(DBQueries.Ciudad.SPInsertarCiudad, param);
return sp.ExecuteNonQuery(null);
}