Hi all,
I am looking for a solution to access a linked server using LLBLGen.
At the moment I am using LLBLGen 2.0.0.0 Final September 28th, 2006 version and SQL Server 2000.
I have two tables in two different databases on the same server instance. On the server I have added linked servers. On the server I can executed the query that will do the cross database query and get the expected result, no errors here
SELECT * FROM DB1.dbo.Table1
INNER JOIN DB2.dbo.Table2 ON DB1.dbo.Table1.PKField = DB1.dbo.Table2.FKField
WHERE DB1.dbo.Table1.PKField = 1;
In my LLBLGen project I have added the two catalogues that are use and manually create a relation between the two entities Table1 and Table2. The code was generated using the Adapter option.
When trying to do the same thing in a C# console application I will only receive the results of Table1.
The code:
Table1Entity Table1;
DataAccessAdapter adapter = new DataAccessAdapter();
EntityCollection records = new EntityCollection(new Table1EntityFactory());
IPrefetchPath2 prefetchPath = new PrefetchPath2((int)EntityType.Table1Entity);
prefetchPath.Add(Table1Entity.PrefetchPathTable2);
IRelationPredicateFilter filter = new RelationPredicateFilter();
IEntityRelation relation = filter.Relations.Add(Table1Entity.Relations.Table2EntityUsingFKField);
relation.CustomFilter = new PredicateExpression(Table1Fields.PKField == Table2Fields.FKField);
relation.CustomFilterReplacesOnClause = true;
// override is needed for correcting the relation
filter.PredicateExpression.Add(Table1Fields.Table1 == 1);
filter.PredicateExpression.Add(Table2Fields.Status == 0);
adapter.FetchEntityCollection(records, filter, prefetchPath);
When retrieving the data only the values of Table1 are returned...
Because I created added an PrefetchPath2 I was expecting the results of both tables. Is this wrong? Or am I missing a magical setting??
Please help me out and thanks in advance.
André