abe545 / CodeOnlyStoredProcedures

A library for easily calling Stored Procedures in .NET using only code (no xml or gui).
MIT License
4 stars 3 forks source link

Dynamic stored procedures can have multiple schemas specified #14

Closed abe545 closed 9 years ago

abe545 commented 9 years ago

And it will use the last schema.

// will execute [bar].[stored_proc]
return db.Connection.Execute().dbo.foo.bar.stored_proc();

It should probably throw an exception.