Skip to content

Commit

Permalink
fixed xml escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
BillKeenan committed Oct 9, 2012
1 parent 249fcaa commit 1f39c96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Massive is a "wrapper" for your DB tables and uses System.Dynamic extensively. I
* Get a Database. Northwind will work nicely. Add a connection to your database in your web.config (or app.config). Don't forget the providerName! If you don't know what that is - just add providerName = 'System.Data.SqlClient' right after the whole connectionString stuff.
* install the mysql library with NuGet "install-package mysql.data"
* add a provider name to your app/web.config
<system.data>
<DbProviderFactories>
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.5.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data>
&lt;system.data&gt;
&lt;DbProviderFactories&gt;
&lt;add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.5.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /&gt;
&lt;/DbProviderFactories&gt;
&lt;/system.data&gt;
* Create a class that wraps a table. You can call it whatever you like, but if you want to be cool just name it the same as your table.
* Query away and have fun

Expand Down

0 comments on commit 1f39c96

Please sign in to comment.