Hi, i've been messing around getting the following sql query into llblgen, but to no avail yet.
SELECT
*
FROM
Store s RIGHT JOIN RewriterRule rr
ON (rr.StoreId = s.Id OR rr.StoreId IS NULL)
the rewriter rule has a foreign key to store, but the foreign key can be null. what the query does is it fetches all the stores and their associated rewriterrules PLUS all the rewriter rules that have no foreign key relations for each store.
what i've got so far in llblgen is this (using adapter)...
EntityCollection<StoreEntity> storeEntities = new EntityCollection<StoreEntity>(new StoreEntityFactory());
IRelationPredicateBucket storeRelationPredicateBucket = new RelationPredicateBucket();
EntityRelation entityRelation = new EntityRelation();
PredicateExpression predicateExpression = new PredicateExpression();
predicateExpression.AddWithOr(new FieldCompareNullPredicate(RewriterRuleFields.StoreId, null));
entityRelation.AddEntityFieldPair(StoreFields.Id, RewriterRuleFields.StoreId);
entityRelation.CustomFilter = predicateExpression;
entityRelation.CustomFilterReplacesOnClause = false;
storeRelationPredicateBucket.Relations.Add(entityRelation);
IPrefetchPath2 storePrefetchPath = new PrefetchPath2((int)EntityType.StoreEntity);
storePrefetchPath.Add(StoreEntity.PrefetchPathRewriterRule);
adapter.FetchEntityCollection(storeEntities, storeRelationPredicateBucket, storePrefetchPath);
the current solution returns 0 stores, although there should be 4 of them.
any help would be appreciated. I'm on SQL server 2005 and llblgen 2.5 on .net 2.0.
thnx,
Mihkel