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
2e25a5a1
Commit
2e25a5a1
authored
May 11, 2011
by
Sam Saffron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added support for dynamic params
parent
c340cffd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
99 additions
and
3 deletions
+99
-3
SqlMapper.cs
Dapper/SqlMapper.cs
+81
-3
Tests.cs
Tests/Tests.cs
+18
-0
No files found.
Dapper/SqlMapper.cs
View file @
2e25a5a1
...
...
@@ -16,8 +16,13 @@
namespace
Dapper
{
public
static
class
SqlMapper
public
static
partial
class
SqlMapper
{
public
interface
IDynamicParameters
{
void
AddParameter
(
IDbCommand
command
);
}
class
CacheInfo
{
public
object
Deserializer
{
get
;
set
;
}
...
...
@@ -142,7 +147,7 @@ public bool Equals(Identity other)
/// Execute parameterized SQL
/// </summary>
/// <returns>Number of rows affected</returns>
public
static
int
Execute
(
this
IDbConnection
cnn
,
string
sql
,
object
param
=
null
,
IDbTransaction
transaction
=
null
,
int
?
commandTimeout
=
null
)
public
static
int
Execute
(
this
IDbConnection
cnn
,
string
sql
,
dynamic
param
=
null
,
IDbTransaction
transaction
=
null
,
int
?
commandTimeout
=
null
)
{
var
identity
=
new
Identity
(
sql
,
cnn
,
null
,
param
==
null
?
null
:
param
.
GetType
());
var
info
=
GetCacheInfo
(
param
,
identity
);
...
...
@@ -373,7 +378,14 @@ private static CacheInfo GetCacheInfo(object param, Identity identity)
info
=
new
CacheInfo
();
if
(
param
!=
null
)
{
info
.
ParamReader
=
CreateParamInfoGenerator
(
param
.
GetType
());
if
(
param
is
IDynamicParameters
)
{
info
.
ParamReader
=
(
cmd
,
obj
)
=>
{
(
obj
as
IDynamicParameters
).
AddParameter
(
cmd
);
};
}
else
{
info
.
ParamReader
=
CreateParamInfoGenerator
(
param
.
GetType
());
}
}
}
return
info
;
...
...
@@ -494,6 +506,8 @@ public static void PackListParameters(IDbCommand command, string namePrefix, obj
}
}
private
static
Action
<
IDbCommand
,
object
>
CreateParamInfoGenerator
(
Type
type
)
{
var
dm
=
new
DynamicMethod
(
string
.
Format
(
"ParamInfo{0}"
,
Guid
.
NewGuid
()),
null
,
new
[]
{
typeof
(
IDbCommand
),
typeof
(
object
)
},
type
,
true
);
...
...
@@ -901,4 +915,68 @@ public void Dispose()
}
}
}
public
class
DynamicParameters
:
SqlMapper
.
IDynamicParameters
,
IEnumerable
{
Dictionary
<
string
,
ParamInfo
>
parameters
=
new
Dictionary
<
string
,
ParamInfo
>();
class
ParamInfo
{
public
string
Name
{
get
;
set
;
}
public
object
Value
{
get
;
set
;
}
public
ParameterDirection
ParameterDirection
{
get
;
set
;
}
public
DbType
?
DbType
{
get
;
set
;
}
public
int
?
Size
{
get
;
set
;
}
public
IDbDataParameter
AttachedParam
{
get
;
set
;
}
}
public
void
Add
(
string
name
,
object
value
=
null
,
DbType
?
dbType
=
null
,
ParameterDirection
?
direction
=
null
,
int
?
size
=
null
)
{
parameters
[
name
]
=
new
ParamInfo
()
{
Name
=
name
,
Value
=
value
,
ParameterDirection
=
direction
??
ParameterDirection
.
Input
,
DbType
=
dbType
,
Size
=
size
};
}
void
SqlMapper
.
IDynamicParameters
.
AddParameter
(
IDbCommand
command
)
{
foreach
(
var
param
in
parameters
.
Values
)
{
var
p
=
command
.
CreateParameter
();
var
val
=
param
.
Value
;
p
.
ParameterName
=
param
.
Name
;
p
.
Value
=
val
;
p
.
Direction
=
param
.
ParameterDirection
;
var
s
=
val
as
string
;
if
(
s
!=
null
)
{
if
(
s
.
Length
<
4000
)
{
p
.
Size
=
4000
;
}
}
if
(
param
.
Size
!=
null
)
{
p
.
Size
=
param
.
Size
.
Value
;
}
if
(
param
.
DbType
!=
null
)
{
p
.
DbType
=
param
.
DbType
.
Value
;
}
command
.
Parameters
.
Add
(
p
);
param
.
AttachedParam
=
p
;
}
}
public
object
this
[
string
name
]
{
get
{
return
parameters
[
name
].
AttachedParam
.
Value
;
}
}
public
IEnumerator
GetEnumerator
()
{
throw
new
NotImplementedException
();
}
}
}
Tests/Tests.cs
View file @
2e25a5a1
...
...
@@ -5,6 +5,8 @@
using
Dapper
;
using
System.Data.SqlServerCe
;
using
System.IO
;
using
System.Data
;
using
System.Collections
;
namespace
SqlMapper
{
...
...
@@ -494,6 +496,22 @@ public void TestEnumWeirdness()
connection
.
Query
<
TestEnumClass
>(
"select cast(1 as tinyint) as [EnumEnum]"
);
}
public
void
TestSupportForParamDictionary
()
{
var
p
=
new
DynamicParameters
();
p
.
Add
(
"@name"
,
"bob"
);
p
.
Add
(
"@age"
,
dbType
:
DbType
.
Int32
,
direction
:
ParameterDirection
.
Output
);
connection
.
Query
<
string
>(
"set @age = 11 select @name"
,
p
).
First
().
IsEqualTo
(
"bob"
);
((
int
)
p
[
"@age"
]).
IsEqualTo
(
11
);
}
/* TODO:
*
public void TestMagicParam()
...
...
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