存储过程正确运行但 DataReader 得到错误的结果...有时

Stored procedure runs correctly but DataReader gets wrong result...sometimes

我有一个旅行预订系统的存储过程,它接收 TripID 并识别该旅行是否是国内旅行(例如,所有旅行行程的始发国和目的地国家/地区是否相同)。当我 运行 来自 SSMS 的程序时,它正确地 returns 1 代表国内,0 代表国际。但是,当我尝试通过 DataReader 访问我的应用程序中的数据时,它不适合国内旅行 returns 0。

也就是说,我不认为问题完全出在 DataReader 上,因为当我立即将存储过程更改为 return 1 时,DataReader 将正确检测到该值。

任何人都可以建议更改我的代码以解决此问题吗?

这里是简化的存储过程:

SET NOCOUNT ON;

    --  EXEC CheckIsDomestic 6343

    Declare @HomeOffice INT = (SELECT TOP 1 o.DestinationID
                                    FROM  TR_Trips t
                                    JOIN TR_Travelers ta ON t.TravelerID = ta.TravelerID
                                    JOIN TR_OfficeLocations o ON ta.OfficeID = o.Office_Loc_Id
                                    WHERE t.TripID = @TripID)

    SELECT l.Destination_ID AS DestinationID
    INTO #TempDest
    FROM TR_Trips t JOIN TR_Legs l ON t.TripID = l.TripID
    WHERE t.TripID = @TripID                                                    

    --Check whether there is a destination in the list that is different than the home country                                                      
    DECLARE @CountRows int = (SELECT COUNT(*) 
    FROM #TempDest t
    WHERE DestinationID <> @HomeOffice )                                                        

    IF @CountRows > 0
    BEGIN 
    SELECT 0
    RETURN --tried with and without RETURN; no change
    END
    ELSE 
    BEGIN SELECT 1
    RETURN
    END

以下是我的应用程序的适用部分:

 public bool IsDomestic(int TripID)
        {
            bool ReturnValue = true;
            NewStoredProcedureCommand("CheckIsDomestic");
            AddParameter("@TripID", TripID, System.Data.SqlDbType.Bit);
             ReturnValue = Execute_ReturnValueBool();
            return ReturnValue;
        }

 public Boolean Execute_ReturnValueBool()
        {
            if (sqlCommand == null)
                NewCommand();
                if (sqlCommand.Connection.State != ConnectionState.Open)
                    sqlCommand.Connection.Open();
                bool ReturnValue = false;
                SqlDataReader DR = sqlCommand.ExecuteReader();
                if (DR.HasRows)
                {
                    DR.Read();
                    System.Diagnostics.Debug.WriteLine(DR[0]);
                    ReturnValue = Convert.ToBoolean(DR[0]);
                }
                DR.Close();
                sqlCommand.Connection.Close();
                return ReturnValue;
        }

为什么在应用程序代码中使用 BIT 类型作为 TripID 参数?尝试将其设置为 INT。