How do I perform an insert to database and return inserted identity with Dapper?

I've tried something like this:

string sql = "DECLARE @ID int; " +
             "INSERT INTO [MyTable] ([Stuff]) VALUES (@Stuff); " +
             "SELECT @ID = SCOPE_IDENTITY()";

var id = connection.Query<int>(sql, new { Stuff = mystuff}).First();

But it did't work.

@Marc Gravell thanks, for reply. I've tried your solution but, still same exception trace is below

System.InvalidCastException: Specified cast is not valid

at Dapper.SqlMapper.<QueryInternal>d__a`1.MoveNext() in (snip)\Dapper\SqlMapper.cs:line 610
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in (snip)\Dapper\SqlMapper.cs:line 538
at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param) in (snip)\Dapper\SqlMapper.cs:line 456
link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

It does support input/output parameters (including RETURN value) if you use DynamicParameters, but in this case the simpler option is simply:

string sql = @"
INSERT INTO [MyTable] ([Stuff]) VALUES (@Stuff);
SELECT SCOPE_IDENTITY()";

var id = connection.Query<int>(sql, new { Stuff = mystuff}).Single();
link|improve this answer
Thanks for your reply. Please have a look at updated question. – ppiotrowicz Nov 25 '11 at 14:20
Oh, one more thing. I'm not using .NET 4.0 and dynamic features – ppiotrowicz Nov 25 '11 at 14:22
5  
@ppiotrowicz hmmm.... darn SCOPEIDENTITY is going to return numeric, eh? Perhaps use your original code and select @id ? (this just adds a cast). I will make a note to make sure this works automatically in future dapper builds. Another option for now is select cast(SCOPE_IDENTITY() as int) - again, a bit ugly. I will fix this. – Marc Gravell Nov 25 '11 at 14:26
Thanks! I'll check this out as soon as I can. – ppiotrowicz Nov 25 '11 at 16:18
1  
@MarcGravell: Wow! Great Marc, that's a good one! I didn't realize that scope_identity return type is numeric(38,0). +1 a really good find. Never though of it really and I'm sure I'm not the only one. – Robert Koritnik Nov 26 '11 at 13:59
show 2 more comments
feedback

Not sure if it was because I'm working against SQL 2000 or not but I had to do this to get it to work.

string sql = "DECLARE @ID int; " +
             "INSERT INTO [MyTable] ([Stuff]) VALUES (@Stuff); " +
             "SET @ID = SCOPE_IDENTITY(); " +
             "SELECT @ID";

var id = connection.Query<int>(sql, new { Stuff = mystuff}).Single();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.