Package: libmysql6.4-cil Version: 6.4.3-4 I have deployed a dotnet core console application (.Net core 2.0) on linux subsystem (Ubuntu 18.04) running under windows 10. Since the app had to communicate with a mySql server on windows, I also installed a mysql connector for .net (libmysql6.4-cil) on linux. The issue is that retrieving a field requires me to provide exactly the same column name as that in the database. i.e. A case-sensitive check is being enforced here.
This same app works fine on windows environment. i.e. no case-sensitivity related issue is encountered. Though here I am using mysql-connector-net-6.9.7 with MySql 5.6. It seems like the problem is with libmysql6.4-cil. It should not be enforcing any such check and should be retrieving fields/columns from database irrespective of casing used for column names.

