
Hello,
I'm trying to get the base language(default organization language), but i didn't find this information, i tryed to check the organization service but it doesn't contain any information about the base language.
do you have any idea about how to get the base language ?
Thank's in advance.
i found that there's an entity "organization" contain all information about your instance, and for the language i used this request :
var languageCode = Service.RetrieveMultiple(new QueryExpression("organization")
{
ColumnSet = new ColumnSet("languagecode"),
}).Entities.First().GetAttributeValue<int>("languagecode");