Reply to thread

Hi jesseblue, you are in the right forum. Best thing to do about getting help with coding is jump onto IRC.


But to solve your problem take a look at DBMovieInfo.cs, in here you find the definition for the 'Language' field:


[CODE]

public string Language {

            get { return _language; }


            set {

                _language = value;

                commitNeeded = true;

            }

        } private string _language;

[/CODE]


You would need to change the type from 'String' to 'StringList', I think this deserves an enhancement request on the Issue Tracker.


There is special handling in movingpictures when publishing skin properties when dealing with StringList types.


Top Bottom