Hello !!!
Does anyone know how to map a table with a composite key using ontop?
In Ontop, to map a table to the ontology structure, can you provide the code for the following scenario:
:ERP/dbo.TPRODUTO{IDPRD} a :Product_Service ; :NomeProdutoServiço {NOMEFANTASIA} ; :CodigoProdutoServiço {CODIGOREDUZIDO}.
Using SQL as the data source with
SELECT * FROM [ERP].[dbo].[TPRODUTO].
In this case, IDPRD is the primary key for the TPRODUTO table.
How would the code look if the primary key were composite, consisting of both IDPRD and IDSEQ fields?
Tks !