using system;
using system.linq;
using microsoft.xrm.sdk;
using microsoft.xrm.sdk.query;
using microsoft.crm.sdk.messages;
using microsoft.xrm.sdk.messages;
using system.collections.generic;
///
/// 審核歷史記錄
///
public class audithistory
;retrieveattributechangehistoryresponse response = (retrieveattributechangehistoryresponse)service.execute(request);
//結果
auditdetailcollection auditdetailcollection = response.auditdetailcollection;
}///
/// 索對特定實體所做的所有更改
///
/// 服務
/// 目標記錄
public void retrieveentityhistory(iorganizationservice service, entityreference target)
;retrieverecordchangehistoryresponse response = (retrieverecordchangehistoryresponse)service.execute(request);
//結果
auditdetailcollection auditdetailcollection = response.auditdetailcollection;
}///
/// 刪除包括在給定結束日期之前建立的審核資料的全部分割槽
///
/// 服務
/// 結束日期
public void deleteaudit(iorganizationservice service, datetime enddate)
///
/// 刪除審核記錄
///
/// 服務
/// 記錄集合
public void deleteaudit(iorganizationservice service, auditdetailcollection auditdetailcollection)
}///
/// 批量操作
///
public class executemultiple
public void new()
,requests = new organizationrequestcollection()
};list.add(multiple);
}public void add(organizationrequest request)
else
}public void addcreate(entity en)
;add(request);
}public void addupdate(entity en)
;add(request);
}public void adddelete(entityreference er)
;add(request);
}public void adddelete(entity en));}
public void adddelete(entitycollection ec)
}public void adddelete(datacollectionlist)}}
public void adddelete(ienumerablelist)}}
public void execute(iorganizationservice service)} }
}
git 查詢歷史記錄
git log oneline author 其中author為要查詢的作者的名字 如果要查詢多個人的提交歷史,則使用i 下格式 git log oneline author yyy 注意,上面要對 轉義 2 查詢commit中的關鍵字資訊 git log oneline grep 其中 為需要查詢...
Better History(歷史記錄)
外掛程式介紹 剛剛看到在網頁上看到一篇好的文章或者正在編輯什麼,不小心一時手賤關掉了網頁,再開啟就找不到了,想必很多朋友經常遇到這樣的事,better history 歷史記錄 讓你更好地檢視您的歷史記錄。為檢視您的歷史記錄帶來最好的搜尋體驗,最清晰的介面和最有幫助的篩選。使用說明 將better ...
MySQL Event歷史記錄
需求 sql server的作業歷史 job 記錄是儲存在msdb庫中的,很方便就查詢相關的job定義,計畫和歷史記錄,而mysql的event卻沒有歷史記錄。為方便檢視event是否正常執行以及執行結果,通過以下兩個步驟來實現類似的功能。實現 1.在mysql庫建立event執行的歷史記錄表 cr...