本文整理汇总了C#中System.Factory.Delete方法的典型用法代码示例。如果您正苦于以下问题:C# Factory.Delete方法的具体用法?C# Factory.Delete怎么用?C# Factory.Delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Factory
的用法示例。
在下文中一共展示了Factory.Delete方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Delete
public static Response<Asiento> Delete(this Asiento request,
Factory factory,
IRequestContext requestContext,
bool checkSucursal=true,
bool checkPeriodo=false,
Action<IDbCommand,Asiento> runBeforeDeleteDbCommandsFn=null,
Action<IDbCommand,Asiento> runAfterDeleteDbCommandsFn=null)
{
request.CheckId(Operaciones.Destroy);
var httpRequest = requestContext.Get<IHttpRequest>();
string lockKey=request.GetLockKey();
Action block=()=>{
factory.Delete(request,(dbCmd)=>
{
httpRequest.CacheClientExec(cache=>
{
var id = request.Id;
var cacheKey=request.GetCacheKey();
request= cache.Get<Asiento>(cacheKey);
if(request== default(Asiento))
{
request= dbCmd.FirstOrDefault<Asiento>(q=> q.Id==id);
AssertExists(request, id);
}
else
{
cache.Remove(cacheKey);
}
request.ValidateAndThrowHttpError(Operaciones.Destroy);
if(checkSucursal) request.CheckSucursal(factory, httpRequest);
if(checkPeriodo) request.CheckPeriodo(factory,httpRequest);
if(runBeforeDeleteDbCommandsFn!=null) runBeforeDeleteDbCommandsFn(dbCmd, request);
});
},(dbCmd)=>
{
if(runAfterDeleteDbCommandsFn!=null) runAfterDeleteDbCommandsFn(dbCmd,request);
});
};
IRedisClientsManager cm = httpRequest.GetCacheClient() as IRedisClientsManager;
try
{
if( cm != null)
{
cm.Exec(redisClient=>
{
using (redisClient.AcquireLock(lockKey, TimeSpan.FromSeconds(Definiciones.LockSeconds)))
{
block();
}
});
}
else
block();
return new Response<Asiento>(){};
}
catch(Exception e)
{
throw new HttpError(e.Message);
}
}