November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Sorry for the late reply, but it was figured out. We had to do this:
DataCommand command = new DataCommand();
command.ConnectionString = CoreConfiguration.Instance.Connection.AppDatabase;
command.CommandText = "[cms_LanguageInfoLoadAll]";
command.Parameters = new DataParameters
{
new DataParameter("ApplicationId", AppContext.Current.ApplicationId, DataParameterType.UniqueIdentifier)
};
DataTable loadTable = DataService.LoadTable(command);
DataRowCollection languages = loadTable.Rows;
Instead of callingLanguage.GetAllLanguagesDT().Rows
I'm trying to get a all the languages that are available in Commerce from CMS. I'm using
but I'm getting
every time I look to access it. Any suggestions would be greatly appreciated.