Skip to content

Commit 7ab3b06

Browse files
committed
Fix language
1 parent 29df553 commit 7ab3b06

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,10 @@ Console.WriteLine(string.Format("Found '{0}' stock items.", count));
189189

190190
## Manual SQL
191191

192-
**sqlite-net** is normally used as a light ORM with the methods `CreateTable` and `Table`. However, you can use it as just a convenient
193-
way to execute explicit queries.
192+
**sqlite-net** is normally used as a light ORM (object-relational-mapper) using the methods `CreateTable` and `Table`.
193+
However, you can also use it as a convenient way to manually execute queries.
194194

195-
Here is an example of create a table, inserting into it, and
196-
querying it without using the ORM.
195+
Here is an example of creating a table, inserting into it (with a parameterized command), and querying it without using ORM features.
197196

198197
```csharp
199198
db.Execute ("create table Stock(Symbol varchar(100) not null)");

0 commit comments

Comments
 (0)