I have been able to get some part the statement working. I am getting the following error message
Error Message :
The multi-part identifier "dbo.DI_CATEGORYDESCS_LANGS.PUB_ID" could not be bound.
The multi-part identifier "dbo.DI_CATEGORYDESCS_LANGS.WEB_CATEGORY_LANGUAGE_DESC" could not be bound.
The multi-part identifier "dbo.DI_CATEGORYDESCS_LANGS.WEB_CATEGORY_LANGUAGE_DESC" could not be bound.
Here my statement
ResultsetFields fields = new ResultsetFields(3);
fields.DefineField(CategoryDescriptionFieldIndex.LevelId, 0, "LevelId");
fields.DefineField(CategoryDescriptionLangFieldIndex.WebLanguageDescription, 1, "WebDescription");
fields.DefineField(CategoryFieldIndex.CategoryId, 2, "CategoryId");
// set the funcion field (the second)
EntityField2 nullIFFunction = CategoryDescriptionLangFields.WebLanguageDescription.SetExpression(new DbFunctionCall("NULLIF", new object[] { CategoryDescriptionLangFields.WebLanguageDescription, "N" }));
fields[1].ExpressionToApply = new DBFunctionCall("COALESCE", new object[] { nullIFFunction, CategoryDescriptionFields.WebDescription });
// Create filter filter
IRelationPredicateBucket bucket = new RelationPredicateBucket();
// set the relations and their custom filters
IEntityRelation categoryDescsLangsRelation = CategoryEntity.Relations.CategoryDescriptionEntityUsingPublicationIdLevel1Id;
categoryDescsLangsRelation.CustomFilter = new PredicateExpression(CategoryFields.PublicationId == CategoryDescriptionLangFields.PublicationId);
bucket.Relations.Add(categoryDescsLangsRelation, JoinHint.Inner);
IEntityRelation categoryDescsRelation = CategoryEntity.Relations.CategoryDescriptionEntityUsingPublicationIdLevel1Id;
categoryDescsRelation.CustomFilter = new PredicateExpression(CategoryFields.PublicationId == CategoryDescriptionFields.PublicationId);
bucket.Relations.Add(categoryDescsRelation, JoinHint.Inner);
// group by clause
IGroupByCollection groupByClause = new GroupByCollection();
groupByClause.Add(fields[0]);
groupByClause.Add(fields[1]);
groupByClause.Add(CategoryDescriptionFields.WebDescription);
groupByClause.Add(fields[2]);
DataTable categoryTable = new DataTable("Categories");
IMsglDataAccessAdapter da = null;
da = GetDataAccessAdapter(-1);
bool allowDuplicates = true;
da.FetchTypedList(fields, categoryTable, bucket, 0, null, allowDuplicates, groupByClause);