<التكوين>
<!-- إعدادات خاصة بالتطبيق -->
<إعدادات التطبيق>
<add key=ConnectionString value=server=localhost;uid=sa;pwd=;database=store />
</appSettings>
<configuration>
public SqlDataReader GetReviews(int ProductID) {
// قم بتوصيل الاتصال والأوامر
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings[ConnectionString]);
SqlCommand myCommand = new SqlCommand(ReviewsList, myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
// 参数
SqlParameterparameterProductID = new SqlParameter(@ProductID, SqlDbType.Int, 4);
المعلمةProductID.Value = معرف المنتج؛
myCommand.Parameters.Add(parameterProductID);
// 执行
myConnection.Open();
نتيجة SqlDataReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// 返回结果
نتيجة الإرجاع؛
数据库连接;العودة الحقيقية>