SharePoint 2010 supports Managed Metadata and of course you can include a column of this type in any list definition. However, when querying a list and specifying a Manage Metadata column in the ViewFields, different information is returned depending on which type of query you use.
For testing, I created a new Managed Metadata Service Group and TermSet with a couple Terms, nothing outlandish.
Then I created a Custom List and added a Managed Metadata column named “Tax
” that references the MySet TermSet
.
For testing purposes, I created a very simple and minimal console application. As you can see from the code below, both methods shared the ViewFields
so I expected the same results in the Tax
field.
private static string VIEW_FIELDS = "<FieldRef Name='Title'/><FieldRef Name='Tax'/>";
static void Main(string[] args)
{
using(SPSite site = new SPSite(http:
{
using(SPWeb web = site.OpenWeb())
{
SPList list = web.Lists.TryGetList("TaxTest");
UseSPQuery(list);
UseSPSiteDataQuery(web);
}
}
Console.ReadLine();
}
private static void UseSPQuery(SPList list)
{
SPQuery query = new SPQuery();
query.ViewFields = VIEW_FIELDS;
DataTable dt = list.GetItems(query).GetDataTable();
Console.WriteLine("SPQuery:\t\t{0}", dt.Rows[0]["Tax"]);
}
private static void UseSPSiteDataQuery(SPWeb web)
{
SPSiteDataQuery query = new SPSiteDataQuery();
query.ViewFields = VIEW_FIELDS;
DataTable dt = web.GetSiteData(query);
Console.WriteLine("SPSiteDataQuery:\t{0}", dt.Rows[0]["Tax"]);
}
The results however were this:
As you can see, the SPQuery
returned the Managed Metadata field as the Term name then the Term ID while the SPSiteDataQuery
returned it as WssId
then the Term name.
To correct this and have both queries return the same, you need to set the ViewFieldsOnly
property to true for the SPQuery
.
SPQuery query = new SPQuery();
query.ViewFields = VIEW_FIELDS;
query.ViewFieldsOnly = true;
With this property set, the results are now what are expected.