7
私はちょうどDapperの「マニュアル」からこのサンプルを読んでいる:はなぜDapperのサンプル中の#(ハッシュ)
connection.Execute(@"
set nocount on
create table #t(i int)
set nocount off
insert #t
select @a a union all select @b
set nocount on
drop table #t", new {a=1, b=2 })
.IsEqualTo(2);
は、#1のTさんは、何かのために特別な構文はありますか?それとも、彼らは私を混乱させるだけですか? :)
非常に精巧な答えをありがとう! – asgerhallas