Hi,
I'm trying to convert code that uses the IN clause for ids to a Temp Table solution.
I have created everything for creating the table and inserting the data into the temp table.
So far so good.
Now i try to make an inner join to the temp table, but can't quite figure out how.
I have tried to create an entity field named "id" and the table has a default name of "#TempTable" and use that in a EntityRelation
here are the pieces of code i have tried to use
public const string TableName = "#TempTable";
public const string KeyName = "id";
public IEntityField2 PrimaryKey = new EntityField2(new FieldInfo(KeyName, TableName, typeof(int), true, false, true, false, 0, Int32.MaxValue, 1, 1));
public IEntityRelation CreateRelation(EntityField2 joinField)
{
return new EntityRelation(this.PrimaryKey, joinField, RelationType.OneToMany);
}
And this is the code for creating the query
var bucket = new RelationPredicateBucket();
var tempTable = new TempTable(incidentIds);
bucket.Relations.Add(tempTable.CreateRelation(IncidentFields.IncidentId));
using (var adapter = AdapterManager.CreateAdapter())
{
tempTable.TransfereData(adapter);
var incidents = new EntityCollection<IncidentEntity>();
adapter.FetchEntityCollection(incidents, bucket, prefetchPath);
return IncidentDto.ToDtoList(incidents);
}
When i try to add the relation to a bucket i get the following error at execution
The element name '#TempTable' isn't known in this provider
It is clear why it gives me the error, but is there a way to emit some literal text for the relation?
or any other suggestions