<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Query folding handlers reference in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Query-folding-handlers-reference/m-p/3075391#M41215</link>
    <description>&lt;P&gt;FYI:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I found these links (which have been removed from the current documentation without being replaced):&lt;BR /&gt;&lt;A href="https://github.com/microsoft/DataConnectors/blob/00b30f78143873b0bff60335ed53069288aad6db/docs/table-view.md" target="_blank"&gt;https://github.com/microsoft/DataConnectors/blob/00b30f78143873b0bff60335ed53069288aad6db/docs/table-view.md&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;(in an older version of DataConnectors repo)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://web.archive.org/web/20200920164149/https://github.com/microsoft/DataConnectors/issues/246" target="_blank"&gt;https://web.archive.org/web/20200920164149/https://github.com/microsoft/DataConnectors/issues/246&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 10 Feb 2023 20:21:12 GMT</pubDate>
    <dc:creator>xli629b</dc:creator>
    <dc:date>2023-02-10T20:21:12Z</dc:date>
    <item>
      <title>Query folding handlers reference</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-folding-handlers-reference/m-p/3066608#M41078</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;What are all of the query folding handlers (OnTake, OnSkip, OnSelectRows etc.)? I did not find a reference listing all of them.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Which ones are the most important to implement? (I know GetType and GetRows are the mandatory Table.View handlers.)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Or alternatively, what should we consider when deciding which ones to implement?&lt;BR /&gt;&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Especially in regards to supporting Direct Query? Or Incremental Refresh?&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I believe there were past discussions about this in the Issues section of &lt;A href="https://github.com/microsoft/DataConnectors" target="_self"&gt;microsoft/DataConnectors&lt;/A&gt;&amp;nbsp;on GitHub,&amp;nbsp;which may have answered the above questions. However, this content seems to have been deleted.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Feb 2023 15:47:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-folding-handlers-reference/m-p/3066608#M41078</guid>
      <dc:creator>xli629b</dc:creator>
      <dc:date>2023-02-07T15:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Query folding handlers reference</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-folding-handlers-reference/m-p/3068709#M41106</link>
      <description>&lt;P&gt;Query folding handlers are a set of functions in PowerBI's data connector API that allow you to control how data is transferred from a data source to PowerBI. The most commonly used query folding handlers include:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;OnTake: controls how many rows are returned from the data source&lt;/LI&gt;&lt;LI&gt;OnSkip: controls how many rows are skipped before the data is returned&lt;/LI&gt;&lt;LI&gt;OnSort: controls how the data is sorted before being returned&lt;/LI&gt;&lt;LI&gt;OnFilter: controls how the data is filtered before being returned&lt;/LI&gt;&lt;LI&gt;OnColumns: controls which columns are returned from the data source&lt;/LI&gt;&lt;LI&gt;OnGroup: controls how the data is grouped before being returned&lt;/LI&gt;&lt;LI&gt;OnSelectRows: combines OnTake, OnSkip, OnSort, OnFilter, OnColumns, and OnGroup into one function call.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The most important handlers to implement depend on the specific use case and the requirements of your data source. However, to support Direct Query, the OnSelectRows and OnGetRows handlers are important. To support Incremental Refresh, the OnGetRows and OnGetSchema handlers are important.&lt;/P&gt;&lt;P&gt;When deciding which handlers to implement, consider the following factors:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The capabilities of your data source: not all data sources support all handlers&lt;/LI&gt;&lt;LI&gt;The performance and scalability requirements: some handlers can be more resource-intensive than others&lt;/LI&gt;&lt;LI&gt;The data privacy and security requirements: some handlers may expose sensitive data&lt;/LI&gt;&lt;LI&gt;The functionality required by PowerBI: some handlers are required to enable certain PowerBI features.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;It's recommended to consult the PowerBI documentation and reach out to the PowerBI support team for more information on query folding handlers and best practices for implementation.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 10:57:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-folding-handlers-reference/m-p/3068709#M41106</guid>
      <dc:creator>jaweher899</dc:creator>
      <dc:date>2023-02-08T10:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Query folding handlers reference</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-folding-handlers-reference/m-p/3075391#M41215</link>
      <description>&lt;P&gt;FYI:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I found these links (which have been removed from the current documentation without being replaced):&lt;BR /&gt;&lt;A href="https://github.com/microsoft/DataConnectors/blob/00b30f78143873b0bff60335ed53069288aad6db/docs/table-view.md" target="_blank"&gt;https://github.com/microsoft/DataConnectors/blob/00b30f78143873b0bff60335ed53069288aad6db/docs/table-view.md&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;(in an older version of DataConnectors repo)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://web.archive.org/web/20200920164149/https://github.com/microsoft/DataConnectors/issues/246" target="_blank"&gt;https://web.archive.org/web/20200920164149/https://github.com/microsoft/DataConnectors/issues/246&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Feb 2023 20:21:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-folding-handlers-reference/m-p/3075391#M41215</guid>
      <dc:creator>xli629b</dc:creator>
      <dc:date>2023-02-10T20:21:12Z</dc:date>
    </item>
  </channel>
</rss>

