Exemplo n.º 1
0
        public void Can_Write_And_Read_Money_Stored_As_Decimal_And_String()
        {
            MoneyTestEntity testMoney;
            MoneyTestEntity retrievedTestMoney;

            using (ISession session = SessionFactory.OpenSession())
                using (ITransaction transaction = session.BeginTransaction())
                {
                    Money cost   = new Money(3.00m, "GBP");
                    Money retail = cost + new Money(0.02m, "GBP");
                    testMoney = new MoneyTestEntity
                    {
                        Description = "Can_Write_And_Read_Money_Stored_As_Decimal_And_String",
                        Cost        = cost,
                        Retail      = retail
                    };
                    session.Save(testMoney);
                    transaction.Commit();
                    Assert.That(testMoney.Id, Is.Not.Null);
                }

            using (ISession session = SessionFactory.OpenSession())
                using (ITransaction transaction = session.BeginTransaction())
                {
                    retrievedTestMoney = session.Get <MoneyTestEntity>(testMoney.Id);
                    transaction.Commit();
                }
            Assert.That(retrievedTestMoney, Is.Not.Null);
            Assert.That(retrievedTestMoney, Is.EqualTo(testMoney));
            Assert.That(retrievedTestMoney.Cost, Is.EqualTo(testMoney.Cost));
            Assert.That(retrievedTestMoney.Retail, Is.EqualTo(testMoney.Retail));
        }
Exemplo n.º 2
0
        public void Can_Query_By_Sum_And_Filter_Money_Stored_As_Decimal_And_String()
        {
            decimal?total;

            using (ISession session = SessionFactory.OpenSession())
                using (ITransaction transaction = session.BeginTransaction())
                {
                    Money cost      = new Money(-800000000.00m, "USD");
                    Money retail    = cost + new Money(-0.01m, "USD");
                    var   testMoney = new MoneyTestEntity
                    {
                        Description = "Can_Query_By_Sum_And_Filter_Money_Stored_As_Decimal_And_String",
                        Cost        = cost,
                        Retail      = retail
                    };
                    session.Save(testMoney);
                    transaction.Commit();
                    Assert.That(testMoney.Id, Is.Not.Null);
                }

            using (ISession session = SessionFactory.OpenSession())
                using (ITransaction transaction = session.BeginTransaction())
                {
                    var query = session.Query <MoneyTestEntity>()
                                .Where(x => x.Cost.ToCurrencyCode() == "GBP")
                                .Select(x => x.Cost)
                                .Sum(x => x.Amount);
                    total = query;
                    transaction.Commit();
                }
            Assert.That(total, Is.Not.Null);
        }
Exemplo n.º 3
0
 public void Can_Write_Money_Stored_As_Decimal_And_String()
 {
     using (ISession session = SessionFactory.OpenSession())
         using (ITransaction transaction = session.BeginTransaction())
         {
             Money cost      = new Money(2.99m, "GBP");
             Money retail    = cost + new Money(0.01m, "GBP");
             var   testMoney = new MoneyTestEntity
             {
                 Description = "Can_Write_Money_Stored_As_Decimal_And_String",
                 Cost        = cost,
                 Retail      = retail
             };
             session.Save(testMoney);
             transaction.Commit();
             Assert.That(testMoney.Id, Is.Not.Null);
         }
 }
Exemplo n.º 4
0
        public void Can_Query_By_LessThan_Money_Stored_As_Decimal_And_String()
        {
            MoneyTestEntity testMoney;
            MoneyTestEntity retrievedTestMoney;

            using (ISession session = SessionFactory.OpenSession())
                using (ITransaction transaction = session.BeginTransaction())
                {
                    Money cost   = new Money(-800000000.00m, "USD");
                    Money retail = cost + new Money(-0.01m, "USD");
                    testMoney = new MoneyTestEntity
                    {
                        Description = "Can_Query_By_LessThan_Money_Stored_As_Decimal_And_String",
                        Cost        = cost,
                        Retail      = retail
                    };
                    session.Save(testMoney);
                    transaction.Commit();
                    Assert.That(testMoney.Id, Is.Not.Null);
                }

            using (ISession session = SessionFactory.OpenSession())
                using (ITransaction transaction = session.BeginTransaction())
                {
                    var query = session.Query <MoneyTestEntity>().Where(x => x.Retail.Value.Amount < -800000000.00m && x.Retail.Value.ToCurrencyCode() == "USD");

                    retrievedTestMoney = query.SingleOrDefault();
                    transaction.Commit();
                }
            Assert.That(retrievedTestMoney, Is.Not.Null);
            Assert.That(retrievedTestMoney, Is.EqualTo(testMoney));
            if (retrievedTestMoney != null)
            {
                Assert.That(retrievedTestMoney.Cost, Is.EqualTo(testMoney.Cost));
                Assert.That(retrievedTestMoney.Retail, Is.EqualTo(testMoney.Retail));
            }
        }