Hi,
Repeater with custom query has Query Name property. You need to specify there name of the query to be used for retrieving data from Kentico CMS Database. You can create your custom query in Site Manager -> Document types -> edit some document type -> Queries. Following example will show you how the query name needs to be specified:
Query Name: CMS.BlogPost.selectallThen you can navigate into CMS Site Manager -> Development -> Document types -> Edit Blog Post document type -> Queries -> edit appropriate query. There should be following query:
SELECT ##TOPN## ##COLUMNS## FROM CONTENT_BlogPost WHERE ##WHERE## ORDER BY ##ORDERBY##
In this way you can create your own query. BizForms are using table names in database in following format:
Form_<BizformCodeName> Example:
Form_ContactUs I hope this will help you.
Best Regards,
Miroslav Remias