public void ShouldNotFireMultipleQueriesWhenEntitiesAreFetchedUsingIdentifiers()
        {
            ISession session = NHibernateSessionHelper.OpenSession();
            //Loading the employee with ID = 1.
            var employeeUsingTheFirstQuery = session.Get <Employee>(1L);
            //Reloading the employee with ID = 1.
            var employeeUsingTheSecondQuery = session.Get <Employee>(1L);

            //Asserting that the employee loaded from the first query
            //is references equals to the employee loaded from the second query.
            Assert.AreSame(employeeUsingTheFirstQuery, employeeUsingTheSecondQuery);
        }
Example #2
0
        static void Main()
        {
            Voucher voucher        = null;
            var     sessionFactory = NHibernateSessionHelper.CreateSessionFactory();
            var     command        = GetNextCommand();


            while (command != "q")
            {
                try
                {
                    switch (command)
                    {
                    case "n":
                        voucher = NewVoucher();
                        break;

                    case "a":
                        ActivateVoucher(voucher);
                        break;

                    case "p":
                        PreredeemVoucher(voucher);
                        break;

                    case "r":
                        RedeemVoucher(voucher);
                        break;

                    case "s":
                        SaveVoucher(voucher, sessionFactory);
                        break;

                    case "l":
                        voucher = LoadVoucher(sessionFactory);
                        break;

                    case "q":
                        Quit();
                        return;
                    }
                }
                catch (Exception ex)
                {
                    Error("Error " + ex.Message);
                }

                Info(voucher);
                command = GetNextCommand();
            }
        }
Example #3
0
        public ActionResult DisplayProducts()
        {
            using (var session = NHibernateSessionHelper.OpenSession())
            {
                var query = (from x in session.Query <Product>()
                             select x);

                //var query1 = from product in session.Query<Product>()
                //             join stockin in session.Query<StockIn>()
                //             on product.Pid equals stockin.Pid
                //             group

                //string sqlQuery = "select p.Sn as Sn, p.Pid as Pid, p.[Description] as Description, p.Price as Price , sum(s.StockedIn) as Qty from POS_db.dbo.Product " +
                //                  "p join POS_db.dbo.StockIn s on p.Pid = s.Pid group by p.Pid, p.[Description], p.Sn, p.Price";

//                string sqlQuery1 = @"select product.Sn, product.Pid, Product.Description, Product.Price
//, IsNull(stocks.StockedIn-stocks.StockedOut, stocks.StockedIn) as 'Qty' from product join
//(select stockins.ProductId, stockins.Stockedin, stockouts.StockedOut
//from
//(select s.Pid as 'ProductId', sum(s.StockedIn) as 'StockedIn' from StockIn s group by
//s.Pid) stockins left join
//(select o.Pid as 'ProductId', sum(o.StockedOut) as 'StockedOut'
//from StockOut o group by
//o.Pid) stockouts on stockins.ProductId = stockouts.ProductId) stocks on
//product.Pid = stocks.ProductId";

                string sqlQuery1 = @"select product.Sn, product.Pid, Product.Description, stocks.Price as Price
, IsNull(stocks.StockedIn-stocks.StockedOut, stocks.StockedIn) as 'Qty' from product join
(select stockins.ProductId, stockins.Stockedin, stockouts.StockedOut, stockins.Price
from (select s.Pid as 'ProductId', sum(s.StockedIn) as 'StockedIn', sum(Price)/count(Pid) as Price from StockIn s group by s.Pid) stockins 
left join
(select o.Pid as 'ProductId', sum(o.StockedOut) as 'StockedOut' 
from StockOut o group by
o.Pid) stockouts on stockins.ProductId = stockouts.ProductId
) stocks on 
product.Pid = stocks.ProductId
";

                //var query1 = (session.CreateSQLQuery(sqlQuery).SetResultTransformer(Transformers.AliasToBean<Product>()));
                var query2 = session.CreateSQLQuery(sqlQuery1).SetResultTransformer(Transformers.AliasToBean <Product>());

                //List<Product> p = new List<Product>(query1.List<Product>());
                List <Product> products = new List <Product>(query2.List <Product>());

                //List < Product > products = query.ToList<Product>();
                //return View(products.AsQueryable<Product>());

                return(View(products.AsQueryable <Product>()));
            }
        }
        public void Configuration(IAppBuilder app)
        {
            ISessionStorage storage = new WebSessionStorage(HttpContext.Current.ApplicationInstance);

            var allEntities = Assembly.GetAssembly(typeof(Aluno)).GetExportedTypes()
                              .Where(t =>
                                     typeof(EntityWithTypedId <string>).IsAssignableFrom(t) &&
                                     !typeof(EntityWithTypedId <string>).Equals(t) ||
                                     typeof(EntityWithTypedId <int>).IsAssignableFrom(t) &&
                                     !typeof(EntityWithTypedId <int>).Equals(t))
                              .ToList();

            var           localMapping = MappingHelper.GetIdentityMappings(allEntities);
            Configuration config       = NHibernateSessionHelper.Init(storage, null, null, null, localMapping);

            BuildSchema(config, "life_joy.sql");
        }
        public void ShouldNotFireMultipleQueriesWhenEntitiesWithGivenIdentifiersAreAlreadyLoaded()
        {
            ISession session = NHibernateSessionHelper.OpenSession();
            //Loading the department with ID = 1.
            var department = session.Get <Department>(1L);

            //Asserting that the department has 1 employee.
            Assert.IsTrue(department.Employees.Count == 3);

            //Getting the first employee of the billing department
            Employee firstEmployeeOfTheBillingDepartment =
                department.Employees.First();

            //Asserting that the ID of the first employee of Billing department is 1
            Assert.IsTrue(firstEmployeeOfTheBillingDepartment.ID == 1L);
            //Trying to fetch the employee with ID = 1 from the DB again.
            Employee employee = session.Get <Employee>(1L);
        }
        protected override void Load(ContainerBuilder builder)
        {
            if (ConfigurationManager.AppSettings["StarkDb"] == null)
            {
                throw new ApplicationException("Tipo do Banco não informado.");
            }
            if (ConfigurationManager.ConnectionStrings["StarkDb"] == null)
            {
                throw new ApplicationException("ConnectionString StarkDB não informads.");
            }

            NHibernateSessionHelper.Session = NHibernateSessionHelper.GetFactory(typeof(ClassificacaoMapping), ConfigurationManager.AppSettings["StarkDb"], ConfigurationManager.ConnectionStrings["StarkDb"].ConnectionString).OpenSession();

            //builder.Register(x => NHibernateSessionHelper.GetFactory(typeof(ClassificacaoMapping), ConfigurationManager.AppSettings["StarkDb"], ConfigurationManager.ConnectionStrings["StarkDb"].ConnectionString)).As<ISessionFactory>().SingleInstance();
            builder.RegisterType <ContatoRepository>().As <IContatoRepository>();
            builder.RegisterType <ClassificacaoRepository>().As <IClassificacaoRepository>();
            builder.RegisterType <EmailContatoRepository>().As <IEmailContatoRepository>();
            builder.RegisterType <TelefoneContatoRepository>().As <ITelefoneContatoRepository>();
            base.Load(builder);
        }
        public ActionResult DisplayProducts()
        {
            using (var session = NHibernateSessionHelper.OpenSession())
            {
                var query = (from x in session.Query <Product>()
                             select x);

                //var query1 = from product in session.Query<Product>()
                //             join stockin in session.Query<StockIn>()
                //             on product.Pid equals stockin.Pid
                //             group

                string sqlQuery = "select p.Sn as Sn, p.Pid as Pid, p.[Description] as Description, p.Price as Price , sum(s.StockedIn) as Qty from POS_db.dbo.Product " +
                                  "p join POS_db.dbo.StockIn s on p.Pid = s.Pid group by p.Pid, p.[Description], p.Sn, p.Price";
                var query1 = (session.CreateSQLQuery(sqlQuery).SetResultTransformer(Transformers.AliasToBean <Product>()));

                List <Product> p = new List <Product>(query1.List <Product>());

                //List < Product > products = query.ToList<Product>();
                //return View(products.AsQueryable<Product>());

                return(View(p.AsQueryable <Product>()));
            }
        }
 // GET: Home/Create
 public ActionResult Create(Product product)
 {
     using (var session = NHibernateSessionHelper.OpenSession())
     {
         using (var transaction = session.BeginTransaction())
         {
             var prod = session.Query <Product>().FirstOrDefault(x => x.Pid == product.Pid);
             if (prod != null)
             {
                 prod.Description = product.Description;
                 prod.Price       = product.Price;
                 prod.Qty        += product.Qty;
                 session.SaveOrUpdate(prod);
             }
             else
             {
                 session.Save(product);
             }
             transaction.Commit();
         }
         session.Close();
     }
     return(RedirectToAction("DisplayProducts"));
 }
        public void SaveOrder()
        {
            string   customerName = Session["customerName"].ToString();
            DateTime orderDate    = DateTime.Parse(Session["orderDate"].ToString());
            //Session["customerName"] = null;
            //Session["orderDate"] = null;
            string orderId = orderDate.ToString("yyMMddHHmmss");

            //create customer
            Customer customer = new Customer();

            customer.Cid  = long.Parse(orderId);
            customer.Name = customerName;

            //Create Order
            Order order = new Order();

            order.Oid        = long.Parse(orderId);
            order.Date       = DateTime.Parse(orderDate.ToString("yyyy-MM-dd HH:mm:ss.fff"));
            order.Cid        = customer.Cid;
            order.GrossTotal = 120;

            //create salesItem
            SalesItem sItem = new SalesItem();

            //Session.Clear();
            using (var session = NHibernateSessionHelper.OpenSession())
            {
                using (var transaction = session.BeginTransaction())
                {
                    session.Save(customer);
                    transaction.Commit();
                    session.Close();
                }
            }

            using (var session = NHibernateSessionHelper.OpenSession())
            {
                using (var transaction = session.BeginTransaction())
                {
                    session.Save(order);
                    transaction.Commit();
                    session.Close();
                }
            }

            //Save data from Order grid into sales item table
            ViewData["GenerateCompactJSONResponse"] = false;
            GridModel m = new GridModel();
            List <Transaction <ExtendedSalesItem> > salesItemTransaction = m.LoadTransactions <ExtendedSalesItem>(HttpContext.Request.Form["ig_transactions"]);

            foreach (Transaction <ExtendedSalesItem> t in salesItemTransaction)
            {
                var row             = t.row;
                ExtendedSalesItem p = new ExtendedSalesItem();
                if (t.type == "row") //update record
                {
                    int id = int.Parse(t.rowId);
                    {
                        using (var session = NHibernateSessionHelper.OpenSession())
                        {
                            using (var transaction = session.BeginTransaction())
                            {
                                //ExtendedSalesItem esi = session.Get<ExtendedSalesItem>(id);
                                //SalesItem si = new SalesItem();
                                //si.Pid = esi.


                                ////session


                                //session.Update(p);
                                //transaction.Commit();
                                //session.Close();
                            }
                        }
                    }
                }
                else if (t.type == "newrow") //new row added
                {
                    if (row != null)
                    {
                        SalesItem si = new SalesItem();
                        si.Sid   = row.Sn;
                        si.Pid   = row.Pid;
                        si.Qty   = row.Qty;
                        si.Oid   = order.Oid;
                        si.Total = row.Total;

                        using (var session = NHibernateSessionHelper.OpenSession())
                        {
                            using (var transaction = session.BeginTransaction())
                            {
                                session.Save(si);
                                transaction.Commit();
                                session.Close();
                            }
                        }
                    }
                }
                else if (t.type == "deleterow")
                {
                    //var id = t.rowId;
                    //{
                    //    using (var session = NHibernateSessionHelper.OpenSession())
                    //    using (var transaction = session.BeginTransaction())
                    //    {
                    //        p = session.Get<Product>(int.Parse(id));
                    //        session.Delete(p);
                    //        transaction.Commit();
                    //        session.Close();
                    //    }
                    //}
                }
            }
        }
        public ActionResult UpdateProducts()
        {
            ViewData["GenerateCompactJSONResponse"] = false;
            GridModel m = new GridModel();
            List <Transaction <Product> > productTransactions = m.LoadTransactions <Product>(HttpContext.Request.Form["ig_transactions"]);

            //foreach (Transaction<Product> t in productTransactions)
            if (productTransactions.Count == 0)
            {
                return(View());
            }
            Transaction <Product> t = productTransactions.Last();

            {
                var     row = t.row;
                Product p   = new Product();
                if (t.type == "row") //update record
                {
                    int id = int.Parse(t.rowId);
                    {
                        using (var session = NHibernateSessionHelper.OpenSession())
                        {
                            using (var transaction = session.BeginTransaction())
                            {
                                p             = session.Get <Product>(id);
                                p.Pid         = row.Pid;
                                p.Price       = row.Price;
                                p.Qty         = row.Qty;
                                p.Description = row.Description;

                                session.Update(p);

                                //add new stock in entry
                                StockIn stockIn = new StockIn();
                                stockIn.Date      = DateTime.UtcNow;
                                stockIn.Pid       = row.Pid;
                                stockIn.StockedIn = row.Qty;

                                session.Save(stockIn);

                                transaction.Commit();
                                session.Close();
                            }
                        }
                    }
                }
                else if (t.type == "newrow") //new row added
                {
                    if (row != null)
                    {
                        p.Pid         = row.Pid;
                        p.Price       = row.Price;
                        p.Qty         = row.Qty;
                        p.Description = row.Description;
                        using (var session = NHibernateSessionHelper.OpenSession())
                        {
                            using (var transaction = session.BeginTransaction())
                            {
                                session.Save(p);

                                //add new stock in entry
                                StockIn stockIn = new StockIn();
                                stockIn.Date      = DateTime.UtcNow;
                                stockIn.Pid       = row.Pid;
                                stockIn.StockedIn = row.Qty;

                                session.Save(stockIn);

                                transaction.Commit();
                                session.Close();
                            }
                        }
                    }
                }
                else if (t.type == "deleterow")
                {
                    var id = t.rowId;
                    {
                        using (var session = NHibernateSessionHelper.OpenSession())
                            using (var transaction = session.BeginTransaction())
                            {
                                p = session.Get <Product>(int.Parse(id));
                                session.Delete(p);
                                transaction.Commit();
                                session.Close();
                            }
                    }
                }
            }
            return(View());
        }
Example #11
0
 public NHRepository() : base(NHibernateSessionHelper.CurrentFor <T>().Query <T>())
 {
 }
Example #12
0
        public void UpdateProductsWhenOrderSaved()
        {
            ViewData["GenerateCompactJSONResponse"] = false;
            GridModel m = new GridModel();
            List <Transaction <Product> > productTransactions = m.LoadTransactions <Product>(HttpContext.Request.Form["ig_transactions"]);

            foreach (Transaction <Product> t in productTransactions)
            {
                var     row = t.row;
                Product p   = new Product();
                if (t.type == "row") //update record
                {
                    int id = int.Parse(t.rowId);
                    {
                        using (var session = NHibernateSessionHelper.OpenSession())
                        {
                            using (var transaction = session.BeginTransaction())
                            {
                                p     = session.Get <Product>(id);
                                p.Pid = row.Pid;

                                //calculate quantity of product available
                                string queryForAvailableQty = "select isnull((select sum(s.StockedIn) as 'StockedIn' from StockIn s where Pid = " + p.Pid + " group by s.Pid), 0) - " +
                                                              "isnull((select sum(o.StockedOut) as 'StockedIn' from StockOut o where Pid = " + p.Pid + " group by o.Pid), 0) as query";

                                int query = session.CreateSQLQuery(queryForAvailableQty).UniqueResult <int>();
                                //string s = query.ToString();
                                //int avQty =0;
                                //if (s != null)
                                //{
                                //    avQty = int.Parse(s);
                                //}

                                int qtyStockedOut = query - row.Qty;
                                p.Price       = row.Price;
                                p.Qty         = row.Qty;
                                p.Description = row.Description;



                                //add new stock in entry
                                StockOut stockOut = new StockOut();
                                stockOut.Date       = DateTime.UtcNow;
                                stockOut.Pid        = row.Pid;
                                stockOut.Price      = row.Price;
                                stockOut.StockedOut = qtyStockedOut;

                                session.Save(stockOut);

                                session.Update(p);
                                transaction.Commit();
                                session.Close();
                            }
                        }
                    }
                }
                else if (t.type == "newrow") //new row added
                {
                    if (row != null)
                    {
                        p.Pid         = row.Pid;
                        p.Price       = row.Price;
                        p.Qty         = row.Qty;
                        p.Description = row.Description;
                        using (var session = NHibernateSessionHelper.OpenSession())
                        {
                            using (var transaction = session.BeginTransaction())
                            {
                                session.Save(p);
                                transaction.Commit();
                                session.Close();
                            }
                        }
                    }
                }
                else if (t.type == "deleterow")
                {
                    var id = t.rowId;
                    {
                        using (var session = NHibernateSessionHelper.OpenSession())
                            using (var transaction = session.BeginTransaction())
                            {
                                p = session.Get <Product>(int.Parse(id));
                                session.Delete(p);
                                transaction.Commit();
                                session.Close();
                            }
                    }
                }
            }
        }