Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
Dapper
Commits
271af11b
Commit
271af11b
authored
Jun 19, 2018
by
Alex Wiese
Committed by
Nick Craver
Jul 01, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update SqlMapperExtensions.Async.cs
Made the same fix to `InsertAsync`
parent
307ab7ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
SqlMapperExtensions.Async.cs
Dapper.Contrib/SqlMapperExtensions.Async.cs
+1
-1
No files found.
Dapper.Contrib/SqlMapperExtensions.Async.cs
View file @
271af11b
...
...
@@ -165,7 +165,7 @@ public static partial class SqlMapperExtensions
var
name
=
GetTableName
(
type
);
var
sbColumnList
=
new
StringBuilder
(
null
);
var
allProperties
=
TypePropertiesCache
(
type
);
var
keyProperties
=
KeyPropertiesCache
(
type
);
var
keyProperties
=
KeyPropertiesCache
(
type
)
.
ToList
()
;
var
computedProperties
=
ComputedPropertiesCache
(
type
);
var
allPropertiesExceptKeyAndComputed
=
allProperties
.
Except
(
keyProperties
.
Union
(
computedProperties
)).
ToList
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment