How do you access the Windows 10 SystemIndex in a .Net Core app since OleDb is unsupported?

Pete Stewart 1 Reputation point
2020-10-03T05:32:16.567+00:00

I have a .Net Framework app that I am porting to .Net Core 3.1. It queries the system index to find relevant files using AQS and OleDb. But how do I get the same functionality in .Net Core 3.1 since Ole Db is not supported?

(Btw, the keyword system is dreadful.)

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,866 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Castorix31 82,656 Reputation points
    2020-10-03T08:11:58.763+00:00

    I did a test with .NET Core 3.1 and ADODB works
    (by adding reference to "C:\Program Files\Common Files\System\ado\msado15.dll" )

    1 person found this answer helpful.
    0 comments No comments