I am just exploring whether Can I use SQL server instead of the file based dictionary. I am expecting that NHunspell will query against a sql server database instead of file. Is this supported now?
Yes, you can use a binary array containing the dictionary and affix file for NHunspell. We had made those additions to Hunspell to integrate it properly in .NET.
Use this constructor to provide byte arrays instead of flies:
So you have to save the dictionary in binary form in your SQL table. You can save it in text form for some reasons and provide it in binary for using the UTF8 encoding.