Mercurial > pub > bltoolkit
comparison Tools/DocGen/Content/Doc/DataAccess/DeleteSql.htm @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f990fcb411a9 |
---|---|
1 <% group # Basic CRUDL operations and SQL text generation %> | |
2 <% order # 154 %> | |
3 | |
4 DeleteSql.cs | |
5 <% ..\..\..\HowTo\DataAccess\DeleteSql.cs %> | |
6 Both <i>DataAccessor.DeleteByKeySql</i> and <i>DataAccessor.DeleteSql</i> methods generate and execute the following SQL statement: | |
7 <% sql # | |
8 DELETE FROM | |
9 [Person] | |
10 WHERE | |
11 [PersonID] = @PersonID | |
12 %> | |
13 <a name='Person'></a> | |
14 Person.cs | |
15 <% ..\..\..\HowTo\DataAccess\Person.cs %> | |
16 Gender.cs | |
17 <% ..\..\..\HowTo\DataAccess\Gender.cs %> | |
18 App.config | |
19 <% Doc\Data\App.config %> | |
20 <a href="../Data/CreateSql.htm">Create.sql script</a> |