本文整理汇总了C#中ECustoms.DAL.dbEcustomEntities.DeleteDirectly方法的典型用法代码示例。如果您正苦于以下问题:C# dbEcustomEntities.DeleteDirectly方法的具体用法?C# dbEcustomEntities.DeleteDirectly怎么用?C# dbEcustomEntities.DeleteDirectly使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ECustoms.DAL.dbEcustomEntities
的用法示例。
在下文中一共展示了dbEcustomEntities.DeleteDirectly方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DeleteItem
public bool DeleteItem(string[] itemParams)
{
if (itemParams.Length < 3) return false;
int id = itemParams[0].StringToInt();
int verhiceId = itemParams[1].StringToInt();
string branchId = itemParams[2];
var _db = new dbEcustomEntities(Common.Decrypt(ConfigurationManager.ConnectionStrings["dbEcustomEntities"].ConnectionString, true));
try
{
var deleteItem =
_db.tblDeclarationVehicles.FirstOrDefault(
item => item.DeclarationID == id && item.VehicleID == verhiceId && item.BranchId == branchId);
if (deleteItem != null)
{
_db.DeleteDirectly(deleteItem);
_db.SaveChanges();
}
return true;
}
catch (Exception exception)
{
LogManager.GetLogger("ECustoms.DeclarationVehicleFactory").Error(exception.ToString());
throw;
}
finally
{
_db.Connection.Close();
}
}
示例2: DeleteItem
public bool DeleteItem(string[] itemParams)
{
if (itemParams.Length < 2) return false;
string id = itemParams[0];
string branchId = itemParams[1];
var _db = new dbEcustomEntities(Common.Decrypt(ConfigurationManager.ConnectionStrings["dbEcustomEntities"].ConnectionString, true));
try
{
var deleteItem =
_db.tblPermissionTypes.FirstOrDefault(
item => item.TypeCode == id && item.BranchId == branchId);
if (deleteItem != null)
{
_db.DeleteDirectly(deleteItem);
_db.SaveChanges();
}
return true;
}
catch (Exception exception)
{
LogManager.GetLogger("ECustoms.PermissionTypeFactory").Error(exception.ToString());
throw;
}
finally
{
_db.Connection.Close();
}
}