Mercurial > pub > bltoolkit
comparison Tools/DocGen/Content/Doc/DataAccess/SelectByKeySql.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 # 150 %> | |
3 | |
4 SelectByKeySql.cs | |
5 <% ..\..\..\HowTo\DataAccess\SelectByKeySql.cs %> | |
6 <i>DataAccessor.SelectByKetSql</i> method generates and executes the following SQL statement: | |
7 <% sql # | |
8 SELECT | |
9 [MiddleName], | |
10 [PersonID], | |
11 [LastName], | |
12 [FirstName] | |
13 FROM | |
14 [Person] | |
15 WHERE | |
16 [PersonID] = @PersonID | |
17 %> | |
18 <a name='Person'></a> | |
19 Person.cs | |
20 <% ..\..\..\HowTo\DataAccess\Person.cs %> | |
21 Gender.cs | |
22 <% ..\..\..\HowTo\DataAccess\Gender.cs %> | |
23 App.config | |
24 <% Doc\Data\App.config %> | |
25 <a href="../Data/CreateSql.htm">Create.sql script</a> |