Hi,
I'm working on a plugin and I would like to get the data from custumfield plugin.
In a perfect world, the user will be able to specified the columns he wants in configurations file or with check boxes. I saw that we can join tables to a bug using the IPluginBugJoin but I'm getting and error
"FogCreek.FogBugz.Exception.FogBugzException: is not a valid table to include in a SQL join, because it is not part of this plugin's schema."
Here's my code:
public string[] BugJoinTables()
{
return new string[] { api.Database.PluginTableName("CustomFields@fogcreek.com", "custombugdata")};
}
And I try to get the data with something like
sVariable = Bug.GetPluginField("customfields@fogcreek.com", "sColumnName").ToString();
Thanks