本文整理汇总了C#中Status.GetHashCode方法的典型用法代码示例。如果您正苦于以下问题:C# Status.GetHashCode方法的具体用法?C# Status.GetHashCode怎么用?C# Status.GetHashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Status
的用法示例。
在下文中一共展示了Status.GetHashCode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Listar
/// <exception cref="MyException"></exception>
public IList<IUnidade> Listar(ICliente cliente, Status status)
{
var unidades = new List<IUnidade>();
var sql = new StringBuilder();
ITblUnidades tblUnidades = new TblUnidades();
sql.AppendFormat(" SELECT DISTINCT {0}, {1}, {2}", tblUnidades.Id, tblUnidades.Nome, tblUnidades.StatusId);
sql.AppendFormat(" FROM {0}", tblUnidades.NomeTabela);
sql.AppendFormat(" WHERE {0}[email protected]", tblUnidades.ClientesId);
sql.AppendFormat(" AND {0}[email protected]_id", tblUnidades.StatusId);
sql.AppendFormat(" ORDER BY {0};", tblUnidades.Nome);
using (var dal = new DalHelperSqlServer())
{
try
{
dal.CriarParametroDeEntrada("id", SqlDbType.Int, cliente.Id);
dal.CriarParametroDeEntrada("status_id", SqlDbType.SmallInt, status.GetHashCode());
using (var dr = dal.ExecuteReader(sql.ToString()))
{
while (dr.Read())
{
unidades.Add(FactoryUnidade.Manufacture(
dr.GetInt32(0),
dr.GetString(1),
(Status)dr.GetInt16(2)));
}
dr.Close();
}
}
catch (SqlException) { throw new MyException("Operação não realizada, por favor, tente novamente!"); }
}
return unidades;
}