我正在完成一個插件,但有一個小問題。 我想用if來使用查找字段。查詢字段和比較
當我嘗試== operator
,沒有任何反應。隨着Equals() method
,我得到了一個例外說object is not instantiated
...我做錯了什麼?
插件是在創建記錄時的預操作時執行的。
EntityReference modeleContrat = (EntityReference)target.Attributes["new_modeldecontrat"];
throw new InvalidPluginExecutionException(modeleContrat.Name);
if (modeleContrat.Name == ("Contrat d'unité"))
{
使用上面的代碼,if不會被評估,因爲您事先發生異常。這是正確的代碼嗎? – ChrisWue 2011-12-19 18:40:24
嗨克里斯,拋出的異常只是一個測試。 – MademoiselleLenore 2011-12-20 08:17:58