Hi. I try to work with my postgre DB via SubSonic. I have simple config:
<configuration>
<connectionStrings>
<add name="test"
connectionString="Server=localhost;Port=5432;User Id=iliy;Password=111;Database=test;"
providerName="Npgsql"/>
</connectionStrings>
</configuration>
But it does not work. I got "Unable to find the requested .Net Framework Data Provider. It may not be installed." There is Npgsql reference in project.
What's wrong?