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
09f8759b
Commit
09f8759b
authored
May 11, 2011
by
simon.cropp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avoid some casting by more use of generics
parent
6465a2a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
25 deletions
+13
-25
SqlMapper.cs
Dapper/SqlMapper.cs
+13
-25
No files found.
Dapper/SqlMapper.cs
View file @
09f8759b
...
...
@@ -375,24 +375,17 @@ private static CacheInfo GetCacheInfo(object param, Identity identity)
private
static
Func
<
IDataReader
,
T
>
GetDeserializer
<
T
>(
Identity
identity
,
IDataReader
reader
,
int
startBound
=
0
,
int
length
=
-
1
,
bool
returnNullIfFirstMissing
=
false
)
{
object
oDeserializer
;
// dynamic is passed in as Object ... by c# design
if
(
typeof
(
T
)
==
typeof
(
object
)
||
typeof
(
T
)
==
typeof
(
FastExpando
))
{
oDeserializer
=
GetDynamicDeserializer
(
reader
,
startBound
,
length
,
returnNullIfFirstMissing
);
}
else
if
(
typeof
(
T
).
IsClass
&&
typeof
(
T
)
!=
typeof
(
string
))
if
(
typeof
(
T
)
==
typeof
(
object
)
||
typeof
(
T
)
==
typeof
(
FastExpando
))
{
oDeserializer
=
GetClassDeserializer
<
T
>(
reader
,
startBound
,
length
,
returnNullIfFirstMissing
:
returnNullIfFirstMissing
);
return
GetDynamicDeserializer
<
T
>(
reader
,
startBound
,
length
,
returnNullIfFirstMissing
);
}
else
if
(
typeof
(
T
).
IsClass
&&
typeof
(
T
)
!=
typeof
(
string
))
{
oDeserializer
=
GetStructDeserializer
<
T
>(
reader
);
return
GetClassDeserializer
<
T
>(
reader
,
startBound
,
length
,
returnNullIfFirstMissing
);
}
return
GetStructDeserializer
<
T
>(
reader
);
var
deserializer
=
(
Func
<
IDataReader
,
T
>)
oDeserializer
;
return
deserializer
;
}
private
class
FastExpando
:
DynamicObject
...
...
@@ -401,9 +394,7 @@ private class FastExpando : DynamicObject
public
static
FastExpando
Attach
(
IDictionary
<
string
,
object
>
data
)
{
FastExpando
expando
=
new
FastExpando
();
expando
.
data
=
data
;
return
expando
;
return
new
FastExpando
{
data
=
data
};
}
public
override
bool
TrySetMember
(
SetMemberBinder
binder
,
object
value
)
...
...
@@ -418,14 +409,14 @@ public override bool TryGetMember(GetMemberBinder binder, out object result)
}
}
private
static
object
GetDynamicDeserializer
(
IDataRecord
reader
,
int
startBound
=
0
,
int
length
=
-
1
,
bool
returnNullIfFirstMissing
=
false
)
private
static
Func
<
IDataReader
,
T
>
GetDynamicDeserializer
<
T
>
(
IDataRecord
reader
,
int
startBound
=
0
,
int
length
=
-
1
,
bool
returnNullIfFirstMissing
=
false
)
{
if
(
length
==
-
1
)
{
length
=
reader
.
FieldCount
-
startBound
;
}
Func
<
IDataReader
,
FastExpando
>
rval
=
return
r
=>
{
IDictionary
<
string
,
object
>
row
=
new
Dictionary
<
string
,
object
>(
length
);
...
...
@@ -436,13 +427,13 @@ private static object GetDynamicDeserializer(IDataRecord reader, int startBound
row
[
r
.
GetName
(
i
)]
=
tmp
;
if
(
returnNullIfFirstMissing
&&
i
==
startBound
&&
tmp
==
null
)
{
return
null
;
return
default
(
T
)
;
}
}
return
FastExpando
.
Attach
(
row
);
//we know this is an object so it will not box
return
(
T
)(
object
)
FastExpando
.
Attach
(
row
);
};
return
rval
;
}
[
Browsable
(
false
),
EditorBrowsable
(
EditorBrowsableState
.
Never
)]
[
Obsolete
(
"This method is for internal usage only"
,
true
)]
...
...
@@ -640,11 +631,9 @@ private static int ExecuteCommand(IDbConnection cnn, IDbTransaction tranaction,
}
}
private
static
object
GetStructDeserializer
<
T
>(
IDataReader
reader
)
private
static
Func
<
IDataReader
,
T
>
GetStructDeserializer
<
T
>(
IDataReader
reader
)
{
Func
<
IDataReader
,
T
>
deserializer
=
null
;
deserializer
=
r
=>
return
r
=>
{
var
val
=
r
.
GetValue
(
0
);
if
(
val
==
DBNull
.
Value
)
...
...
@@ -653,7 +642,6 @@ private static object GetStructDeserializer<T>(IDataReader reader)
}
return
(
T
)
val
;
};
return
deserializer
;
}
public
static
Func
<
IDataReader
,
T
>
GetClassDeserializer
<
T
>(
IDataReader
reader
,
int
startBound
=
0
,
int
length
=
-
1
,
bool
returnNullIfFirstMissing
=
false
)
...
...
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