Estou esperando um código ArcObjects que seja equivalente à junção esquerda do SQL.
Por exemplo: eu tenho o código SQL abaixo, é uma junção simples buscar os registros das duas tabelas com base no ChecklistId
valor.
SELECT T1.ChecklistId, T1.ChecklistName,
T2.Latitude, T2.Longitude
FROM [dbo].[TableOne] T1
INNER JOIN [dbo].[TableTwo] T2 ON T2.ChecklistId = T1.ChecklistId
WHERE T1.ChecklistId = @ChecklistId
Eu converti a consulta SQL acima nos ArcObjects.
IQueryDef queryDef = featureWorkspace.CreateQueryDef();
queryDef.Tables = "TableOne, TableTwo";
queryDef.SubFields = "TableOne.ChecklistId, TableOne.ChecklistName, TableTwo.Latitude, TableTwo.Longitude";
queryDef.WhereClause = "TableOne.ChecklistId = '" + checklistId + "' AND TableOne.ChecklistId = TableTwo.ChecklistId";
ICursor cursor = queryDef.Evaluate();
IRow row = null;
while ((row = cursor.NextRow()) != null)
{
// ... get and set the values to the objects
}
Eu quero buscar os registros até a T1.ChecklistOwner
coluna com null
valores. Em palavras simples, podemos dizer como SQL da LEFT JOIN
seguinte maneira:
SELECT T1.ChecklistId, T1.ChecklistName,
T2.Latitude, T2.Longitude,
T3.FullName
FROM [dbo].[TableOne] T1
INNER JOIN [dbo].[TableTwo] T2 ON T2.ChecklistId = T1.ChecklistId
LEFT JOIN [dbo].[TableThree] T3 ON T3.UserAlias = T1.ChecklistOwner
WHERE T1.ChecklistId = @ChecklistId
Como posso converter a consulta SQL acima em ArcObjects?
arcobjects
definition-query
Arulkumar
fonte
fonte