File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
199198db .Execute (" create table Stock(Symbol varchar(100) not null)" );
You can’t perform that action at this time.
0 commit comments