Browse Source
Merge pull request #9990 from abpframework/auto-merge/rel-4-4/543
Merge branch dev with rel-4.4
pull/9995/head
maliming
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
3 deletions
-
docs/en/Dapper.md
|
|
|
@ -53,14 +53,16 @@ public class PersonDapperRepository : DapperRepository<MyAppDbContext>, ITransie |
|
|
|
|
|
|
|
public virtual async Task<List<string>> GetAllPersonNames() |
|
|
|
{ |
|
|
|
return (await DbConnection.QueryAsync<string>("select Name from People", transaction: DbTransaction)) |
|
|
|
var dbConnection = await GetDbConnectionAsync(); |
|
|
|
return (await dbConnection.QueryAsync<string>("select Name from People", transaction: await GetDbTransactionAsync())) |
|
|
|
.ToList(); |
|
|
|
} |
|
|
|
|
|
|
|
public virtual async Task<int> UpdatePersonNames(string name) |
|
|
|
{ |
|
|
|
return await DbConnection.ExecuteAsync("update People set Name = @NewName", new { NewName = name }, |
|
|
|
DbTransaction); |
|
|
|
var dbConnection = await GetDbConnectionAsync(); |
|
|
|
return await dbConnection.ExecuteAsync("update People set Name = @NewName", new { NewName = name }, |
|
|
|
await GetDbTransactionAsync()); |
|
|
|
} |
|
|
|
} |
|
|
|
``` |
|
|
|
|