我在列表中有一个托管元数据列。英语值:布鲁塞尔法语:布鲁塞尔。
我需要在ItemUpdating事件中比较属性的前后。我知道之前不能使用,因为它会在项目更新中返回null,所以我必须使用properties.ListItem。
如果用户使用英文的UI,则以下代码可以正常工作,因为术语相同。
但是,如果用户选择法语,那么这不会起作用。因为后属性将是布鲁塞尔
private void ValidateAssignmentDate(SPItemEventProperties properties, SPListItem item)
{
string currentBudgetSection = properties.ListItem["BudgetSection"] == null ? string.Empty : properties.ListItem.GetTaxonomyFieldValue("BudgetSection").ValidatedString.ToString();
string newBudgetSection = properties.AfterProperties["BudgetSection"].ToString();
bool budgetSectionSame = newBudgetSection.Equals(currentBudgetSection);
if(!budgetSectionSame))
{
//dosomething
他的扩展方法是:(我无法改变扩展方法)
public static TaxonomyFieldValue GetTaxonomyFieldValue(this SPListItem item, string fieldName)
{
TaxonomyFieldValue returnValue = null;
try
{
TaxonomyField taxonomyField = GetTaxonomyField(item, fieldName);
if (taxonomyField != null && taxonomyField.Id != null)
returnValue = item[taxonomyField.Id] as TaxonomyFieldValue;
}
catch (Exception ex)
{
throw;
}
return returnValue;
}
答案 0 :(得分:1)
我这样修好了。 关于它的博客:http://levalencia.wordpress.com/
string currentBudgetSection = properties.ListItem["BudgetSection"] == null ? string.Empty : properties.ListItem.GetTaxonomyFieldValueByLanguage(item.Web.Site, "BudgetSection", Thread.CurrentThread.CurrentUICulture.LCID).ToString();
string newBudgetSection=string.Empty ;
if (properties.AfterProperties["BudgetSection"] != null && !string.IsNullOrEmpty(properties.AfterProperties["BudgetSection"].ToString()))
{
int startIndex = properties.AfterProperties["BudgetSection"].ToString().IndexOf("#")+1;
int endIndex = properties.AfterProperties["BudgetSection"].ToString().IndexOf("|");
int length = endIndex - startIndex;
newBudgetSection = properties.AfterProperties["BudgetSection"] == null ? string.Empty : properties.AfterProperties["BudgetSection"].ToString().Substring(startIndex, length);
}
bool budgetSectionSame = newBudgetSection.Equals(currentBudgetSection);
if((!budgetSectionSame )
//do something