コード例 #1
0
ファイル: SqlDateTimeTests.cs プロジェクト: camilohe/unQuery
        public void GetRawValue()
        {
            SqlType type = new SqlDateTime(testDateTime, ParameterDirection.Input);
            Assert.AreEqual(testDateTime, type.GetRawValue());

            type = new SqlDateTime(null, ParameterDirection.Input);
            Assert.Null(type.GetRawValue());
        }
コード例 #2
0
ファイル: SqlDateTimeTests.cs プロジェクト: ffMathy/unQuery
        public void GetRawValue()
        {
            SqlType type = new SqlDateTime(testDateTime, ParameterDirection.Input);

            Assert.AreEqual(testDateTime, type.GetRawValue());

            type = new SqlDateTime(null, ParameterDirection.Input);
            Assert.Null(type.GetRawValue());
        }