How can I add default values to a parameterized query
Posted
by Sean Taylor
on Stack Overflow
See other posts from Stack Overflow
or by Sean Taylor
Published on 2010-04-30T13:49:56Z
Indexed on
2010/04/30
13:57 UTC
Read the original article
Hit count: 357
sql-server
|.NET
When using stored procedures I am able to add default values to parameters, for example:
@name varchar(50) = NULL
Is is possible to do something similar when using a parameterized query in .NET.
Thanks
© Stack Overflow or respective owner