A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
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.