Ejemplo n.º 1
0
        public void ColumnMapping()
        {
            var mapping = new DataContextMapping <AccessNorthwind>();

            mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

            var categoryMapping = new EntityMapping <Category>();

            categoryMapping.TableAttribute = new TableAttribute {
                Name = "Categories"
            };
            categoryMapping.Column(o => o.CategoryID);
            categoryMapping.Column(o => o.CategoryName);
            mapping.Add(categoryMapping);

            var mappingSource = new FluentMappingSource(o => mapping);
            //mappingSource.Add(mapping);

            var db = new AccessNorthwind(@"C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };

            db.Categories.Select(o => new { o.CategoryID, o.CategoryName }).ToArray();
        }
Ejemplo n.º 2
0
        public void InsertWithSubmit()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var mapping      = new DataContextMapping <DataContext>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => (int)o["EmployeeID"], o => o.PrimaryKey().AutoSyncOnInsert().DbGenerated())
                .Column(o => (string)o["FirstName"])
                .Column(o => (string)o["LastName"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            var item = new MyEmployee();

            item["FirstName"] = "CCC";
            item["LastName"]  = "DDD";

            var table = db.GetTable <MyEmployee>();

            table.InsertOnSubmit(item);

            db.SubmitChanges();
        }
Ejemplo n.º 3
0
        public void Test1()
        {
            Exception myexc = null;

            try
            {
                var mapping = new DataContextMapping <AccessNorthwind>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                var categoryMapping = new EntityMapping <Category>();
                categoryMapping.Column(o => o.CategoryID);
                categoryMapping.Column(o => o.CategoryName);
                categoryMapping.Column(o => o.Products);
                mapping.Add(categoryMapping);

                var mappingSource = new FluentMappingSource(o => mapping);
                //mappingSource.Add(mapping);

                var db = new AccessNorthwind(@"C:/Northwind.mdb", mappingSource);
                db.Categories.Select(o => new { o.CategoryID, o.CategoryName, Products = o.Products.ToArray() }).ToArray();
            }
            catch (Exception exc)
            {
                myexc = exc;
            }
            Assert.IsNotNull(myexc);
            Console.WriteLine(myexc.Message);
        }
Ejemplo n.º 4
0
        public void DynamicColumGroup()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var contextMapping      = new DataContextMapping <DataContext>();
                contextMapping.Provider = new ProviderAttribute(typeof(ALinq.MySQL.MySqlProvider));

                var employeeMapping = new EntityMapping <MyEmployee>();
                employeeMapping.Table("Employees")
                .Column(o => o["EmployeeID"], o => o.PrimaryKey().AutoSyncOnInsert())
                .Column(o => o["City"])
                .Column(o => o["FirstName"])
                .Column(o => o["LastName"]);

                contextMapping.Add(employeeMapping);
                return(contextMapping);
            });

            var conn  = "server=localhost;User Id=root;Password=test;Persist Security Info=True;database=northwind";
            var db    = new DataContext(conn, mappingSource);
            var table = db.GetTable <MyEmployee>();

            var keys1 = table.GroupBy(o => o["City"])
                        .Select(o => o.Key);

            keys1.ToList().ForEach(Console.WriteLine);

            var keys2 = table.GroupBy(o => new { F = o["FirstName"], L = o["LastName"] })
                        .Select(o => o.Key);

            keys2.ToList().ForEach(Console.WriteLine);
        }
Ejemplo n.º 5
0
        public void DynamicProperty2()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var contextMapping      = new DataContextMapping <DataContext>();
                contextMapping.Provider = new ProviderAttribute(typeof(ALinq.MySQL.MySqlProvider));

                var employeeMapping = new EntityMapping <MyEmployee>();
                employeeMapping.Table("Employees")
                .Column(o => o["EmployeeID"], o => o.PrimaryKey().AutoSyncOnInsert())
                .Column(o => o["City"])
                .Column(o => o["FirstName"])
                .Column(o => o["LastName"]);

                contextMapping.Add(employeeMapping);
                return(contextMapping);
            });

            var conn = "server=localhost;User Id=root;Password=test;Persist Security Info=True;database=northwind";
            var db   = new DataContext(conn, mappingSource)
            {
                Log = Console.Out
            };

            var table = db.GetTable <MyEmployee>();

            table.Select(o => o["FirstName"]).Cast <dynamic>().ToArray();
            table.Select("['FirstName']").Cast <dynamic>().ToArray();

            table.Select(o => new { OrderDate = o["FirstName"] }).ToArray();
            table.Select("new (['FirstName'] as F, ['LastName'] as L)").Cast <dynamic>().ToList()
            .ForEach(o => Console.WriteLine(o.F + " " + o.L));
        }
Ejemplo n.º 6
0
        public void Join_OnToMany()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var mapping      = new DataContextMapping <DataContext>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                mapping.Map <MyCustomer>()
                .Table("Customers")
                .Column(o => (string)o["City"]);

                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => o["OrderID"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };

            var customers = db.GetTable <MyCustomer>();
            var orders    = db.GetTable <MyOrder>();
            var q         = from c in customers
                            from o in orders
                            where (string)c["City"] == "London"
                            select o;
            var items = q.ToList();

            Assert.IsTrue(items.Count > 0);
        }
Ejemplo n.º 7
0
        public void DynamicColumJoin()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var mapping      = new DataContextMapping <DataContext>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => o["EmployeeID"])
                .Column(o => o["BirthDate"])
                .Column(o => o["FirstName"])
                .Column(o => o["LastName"]);

                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => o["OrderID"])
                .Column(o => o["OrderDate"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            var employees = db.GetTable <MyEmployee>();
            var orders    = db.GetTable <MyOrder>();

            employees.Join(orders, o => o["EmployeeID"], o => o["OrderID"],
                           (a, b) => new { FirstName = a["FirstName"], OrderDate = b["OrderDate"] }).ToArray();
        }
Ejemplo n.º 8
0
        public void Where_Simple4()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyProduct>()
                .Table("Products")
                .Column(o => (decimal)o["UnitPrice"])
                .Column(o => (bool)o["Discontinued"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };

            //下面这个例子是调用两次where以筛选出UnitPrice大于10且已停产的产品
            var table    = db.GetTable <MyProduct>();
            var q        = table.Where(o => (decimal)o["UnitPrice"] > 10m);
            var products = q.Where(o => !(bool)o["Discontinued"]).ToList();

            Assert.IsTrue(products.Count > 0);
        }
Ejemplo n.º 9
0
        public void Where_Drilldown()
        {
            //Where - Drilldown
            //This sample prints a list of customers from the state of Washington along with their orders.
            //A sequence of customers is created by selecting customers where the region is 'WA'. The sample
            //uses doubly nested foreach statements to print the order numbers for each customer in the sequence.
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyCustomer>()
                .Table("Customers")
                .Column(o => (string)o["Region"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            var table       = db.GetTable <MyCustomer>();
            var waCustomers = table.Where(o => (string)o["Region"] == "WA").ToList();

            Assert.IsTrue(waCustomers.Count > 0);
        }
Ejemplo n.º 10
0
        public void Where_Simple3()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyProduct>()
                .Table("Products")
                .Column(o => (int)o["UnitsInStock"])
                .Column(o => (bool)o["Discontinued"])
                .Column(o => (int)o["ReorderLevel"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            //筛选库存量在订货点水平之下但未断货的产品
            var table    = db.GetTable <MyProduct>();
            var products = table.Where(o => (short?)o["UnitsInStock"] <= (short?)o["ReorderLevel"] &&
                                       !(bool)o["Discontinued"]).ToList();

            Assert.IsTrue(products.Count > 0);
        }
Ejemplo n.º 11
0
        public void Where_Simple2()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => (DateTime)o["HireDate"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };

            //筛选1994 年或之后雇用的雇员:
            //var employees = (from e in db.Employees
            //                 where e.HireDate >= new DateTime(1994, 1, 1)
            //                 select e).ToList();
            //Assert.IsTrue(employees.Count > 0);
            var table     = db.GetTable <MyEmployee>();
            var employees = table.Where(o => (DateTime?)o["HireDate"] >= new DateTime(1994, 1, 1)).ToList();

            Assert.IsTrue(employees.Count > 0);
        }
Ejemplo n.º 12
0
        public void Delete()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var mapping      = new DataContextMapping <DataContext>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => (int)o["EmployeeID"])
                .Column(o => (DateTime)o["BirthDate"])
                .Column(o => (string)o["FirstName"])
                .Column(o => (string)o["LastName"]);

                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => (int)o["OrderID"])
                .Column(o => (DateTime)o["OrderDate"]);

                return(mapping);
            });
            var db    = new DataContext("C:/Northwind.mdb", mappingSource);
            var table = db.GetTable <MyEmployee>();

            table.Delete(o => (int)o["EmployeeID"] == -1);
        }
Ejemplo n.º 13
0
        public void GetDataContextMapping()
        {
            var mapping = new DataContextMapping <AccessNorthwind>();

            mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

            var categoryMapping = new EntityMapping <Category>();

            categoryMapping.TableAttribute = new TableAttribute {
                Name = "Categories"
            };
            categoryMapping.Column(o => o.CategoryID, o => o.PrimaryKey());
            categoryMapping.Column(o => o.CategoryName, o => o.NeverUpdateCheck());
            categoryMapping.Association(o => o.Products, o => o.Keys("CategoryID", "CategoryID"));
            mapping.Add(categoryMapping);

            var mappingSource = new FluentMappingSource(o => mapping);
            //mappingSource.Add(mapping);

            //mapping = mappingSource.GetDataContextMapping<AccessNorthwind>();
            //Assert.IsNotNull(mapping);

            //var mapping1 = mappingSource.GetDataContextMapping<DataContext>();
            //Assert.IsNull(mapping1);
        }
Ejemplo n.º 14
0
        public void Join_CompositeKey()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(MySqlProvider));

                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => o["OrderID"]);

                mapping.Map <MyProduct>()
                .Table("Products")
                .Column(o => o["ProductID"]);

                mapping.Map <MyOrderDetail>()
                .Table("OrderDetails")
                .Column(o => o["OrderID"])
                .Column(o => o["ProductID"])
                .Column(o => o["UnitPrice"]);
                return(mapping);
            });
            string conn = "server=localhost;User Id=root;Password=test;Persist Security Info=True;database=northwind";
            var    db   = new DataContext(conn, mappingSource)
            {
                Log = Console.Out
            };
            var orders       = db.GetTable <MyOrder>();
            var products     = db.GetTable <MyProduct>();
            var orderDetails = db.GetTable <MyOrderDetail>();

            (from o in orders
             from p in products
             join d in orderDetails
             on new
            {
                OrderID = o["OrderID"],
                ProductID = p["ProductID"],
            }
             equals new
            {
                OrderID = d["OrderID"],
                ProductID = d["ProductID"]
            } into details
             from d in details
             select new
            {
                OrderID = o["OrderID"],
                ProductID = p["ProductID"],
                UnitPrice = d["UnitPrice"]
            }).ToList();
        }
Ejemplo n.º 15
0
        public void AssociationMapping()
        {
            var mapping = new DataContextMapping <AccessNorthwind>();

            mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

            var categoryMapping = new EntityMapping <Category>();

            categoryMapping.TableAttribute = new TableAttribute {
                Name = "Categories"
            };
            categoryMapping.Column(o => o.CategoryID, new ColumnAttribute {
                IsPrimaryKey = true
            });
            categoryMapping.Column(o => o.CategoryName);
            categoryMapping.Association(o => o.Products, new AssociationAttribute {
                OtherKey = "CategoryID"
            });
            mapping.Add(categoryMapping);

            var productMapping = new EntityMapping <Product>();

            productMapping.TableAttribute = new TableAttribute {
                Name = "Products"
            };
            productMapping.Column(o => o.ProductID, o => o.PrimaryKey());
            productMapping.Column(o => o.ProductName, o => o.NeverUpdateCheck());
            productMapping.Column(o => o.CategoryID, o => o.NeverUpdateCheck());
            productMapping.Association(o => o.Category, o => o.Keys("CategoryID", "CategoryID").Storage("_Category"));
            mapping.Add(productMapping);

            var mappingSource = new FluentMappingSource(o => mapping);
            //mappingSource.Add(mapping);

            var db = new AccessNorthwind(@"C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };

            db.Categories.Select(o => new { o.CategoryID, o.CategoryName, o.Products }).ToArray();

            db.Categories.ToArray();
            db.Products.ToArray();

            var products = db.Products.ToList();

            products.ForEach(o => Console.WriteLine(o.Category));
        }
Ejemplo n.º 16
0
 public void Insert()
 {
     var mappingSource = new FluentMappingSource(delegate(Type contextType)
     {
         var mapping      = new DataContextMapping(contextType);
         mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
         mapping.Map <MyEmployee>()
         .Table("Employees")
         .Column(o => (int)o["EmployeeID"]);
         return(mapping);
     });
     var db = new DataContext("C:/Northwind.mdb", mappingSource)
     {
         Log = Console.Out
     };
     var table = db.GetTable <MyEmployee>();
     var id    = table.Insert(o => new { FirstName = "AAA", LastName = "BBB" });
 }
Ejemplo n.º 17
0
        public void Join_ThreeWay()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(ALinq.MySQL.MySqlProvider));

                mapping.Map <MyCustomer>()
                .Table("Customers")
                .Column(o => o["CustomerID"])
                .Column(o => o["City"])
                .Column(o => o["ContactName"]);

                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => o["CustomerID"])
                .Column(o => o["OrderID"]);

                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => o["City"]);

                return(mapping);
            });
            string conn = "server=localhost;User Id=root;Password=test;Persist Security Info=True;database=northwind";
            var    db   = new DataContext(conn, mappingSource)
            {
                Log = Console.Out
            };
            var customers = db.GetTable <MyCustomer>();
            var orders    = db.GetTable <MyOrder>();
            var employees = db.GetTable <MyEmployee>();
            var items     = (from c in customers
                             join o in orders on c["CustomerID"]
                             equals o["CustomerID"] into ords
                             join e in employees on c["City"]
                             equals e["City"] into emps
                             select new
            {
                ContactName = c["ContactName"],
                ords = ords.Count(),
                emps = emps.Count(),
            }).ToList();
        }
Ejemplo n.º 18
0
        public void Join_LetAssignment()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(MySqlProvider));
                mapping.Map <MyCustomer>()
                .Table("Customers")
                .Column(o => (int)o["CustomerID"])
                .Column(o => (int)o["OrderID"])
                .Column(o => (int)o["CustomerID"])
                .Column(o => (string)o["Country"])
                .Column(o => (string)o["City"])
                .Column(o => (string)o["ContactName"]);

                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => (int)o["OrderID"])
                .Column(o => (int)o["CustomerID"]);

                return(mapping);
            });
            string conn = "server=localhost;User Id=root;Password=test;Persist Security Info=True;database=northwind";
            var    db   = new DataContext(conn, mappingSource)
            {
                Log = Console.Out
            };

            var customers = db.GetTable <MyCustomer>();
            var orders    = db.GetTable <MyOrder>();
            var q         = (from c in customers
                             join o in orders on c["CustomerID"]
                             equals o["CustomerID"] into ords
                             let z = (string)c["City"] + (string)c["Country"]
                                     from o in ords
                                     select new
            {
                ContactName = c["ContactName"],
                OrderID = o["OrderID"],
                z
            }).ToList();

            Assert.IsTrue(q.Count > 0);
        }
Ejemplo n.º 19
0
        public void SelectWhere()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => (DateTime)o["BirthDate"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            var table = db.GetTable <MyEmployee>().Where(o => (DateTime?)o["BirthDate"] < DateTime.Now);

            table.Where(o => (DateTime?)o["BirthDate"] < DateTime.Now).ToArray();
        }
Ejemplo n.º 20
0
        public void Aggregate_Null()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var mapping      = new DataContextMapping <DataContext>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                mapping.Map <MyProduct>()
                .Table("Products")
                .Column(o => (int)o["ProductID"]);

                return(mapping);
            });
            var db    = new DataContext("C:/Northwind.mdb", mappingSource);
            var table = db.GetTable <MyProduct>();

            table.Select(o => (int)o["ProductID"]).ToArray();

            var min = table.Min(o => (int)o["ProductID"]);
            var max = table.Max(o => (int)o["ProductID"]);
        }
Ejemplo n.º 21
0
        public void SelectNew1()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var mapping      = new DataContextMapping <DataContext>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => o["LastName"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };

            db.GetTable <MyEmployee>().Select(o => new { Item = o })
            .Select(o => o.Item["LastName"])
            .ToArray();
        }
Ejemplo n.º 22
0
        public void Test3()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var contextMapping      = new DataContextMapping <DataContext>();
                contextMapping.Provider = new ProviderAttribute((typeof(AccessDbProvider)));

                var employeeMapping = new EntityMapping <MyEmployee>();
                employeeMapping.Table("Employees")
                .Column(o => (string)o["City"])
                .Column(o => (string)o["FirstName"])
                .Column(o => (string)o["LastName"]);

                contextMapping.Add(employeeMapping);
                return(contextMapping);
            });
            var dc        = new DataContext("C:/Northwind.mdb", mappingSource);
            var metaTable = dc.Mapping.GetTable(typeof(MyEmployee));

            Assert.IsNotNull(metaTable);
        }
Ejemplo n.º 23
0
        public void Where_Simple1()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyCustomer>()
                .Table("Customers")
                .Column(o => (string)o["City"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            //使用where筛选在伦敦的客户
            var table     = db.GetTable <MyCustomer>();
            var customers = table.Where(o => (string)o["City"] == "London").ToArray();

            Assert.IsTrue(customers.Length > 0);
        }
Ejemplo n.º 24
0
        public void Join_NullableNonnullableKeyRelationship()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(MySqlProvider));
                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => o["OrderID"])
                .Column(o => o["EmployeeID"]);

                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => o["EmployeeID"])
                .Column(o => o["FirstName"]);

                return(mapping);
            });
            string conn = "server=localhost;User Id=root;Password=test;Persist Security Info=True;database=northwind";
            var    db   = new DataContext(conn, mappingSource)
            {
                Log = Console.Out
            };
            var orders    = db.GetTable <MyOrder>();
            var employees = db.GetTable <MyEmployee>();
            var q         = (from o in orders
                             join e in employees
                             on o["EmployeeID"] equals
                             e["EmployeeID"] into emps
                             from e in emps
                             select new
            {
                OrderID = o["OrderID"],
                FirstName = e["FirstName"]
            }).ToList();

            Assert.IsTrue(q.Count > 0);
        }
Ejemplo n.º 25
0
        public void ConvertTest()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));
                mapping.Map <MyProduct>().Table("Products").Column(o => o["ProductID"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            var table = db.GetTable <MyProduct>();

            table.Select(o => o["ProductID"]).ToArray();
            table.Select(o => (int)o["ProductID"]).ToArray();
            table.Select(o => Convert.ToString((int)o["ProductID"])).ToArray();

            //var min = table.Min(o => (int)o["ProductID"]);
            //var max = table.Max(o => (int)(o["ProductID"]));
        }
Ejemplo n.º 26
0
        public void GroupWhere4()
        {
            var mappingSource = new FluentMappingSource(delegate
            {
                var mapping      = new DataContextMapping <DataContext>();
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                mapping.Map <MyEmployee>()
                .Table("Employees")
                .Column(o => (DateTime)o["BirthDate"])
                .Column(o => o["FirstName"])
                .Column(o => o["LastName"]);

                return(mapping);
            });
            var db    = new DataContext("C:/Northwind.mdb", mappingSource);
            var table = db.GetTable <MyEmployee>();
            var keys3 = table.Where(o => (DateTime)o["BirthDate"] < DateTime.Now)
                        .GroupBy(o => o["FirstName"])
                        .Select(o => o.Key);

            keys3.ToList().ForEach(Console.WriteLine);
        }
Ejemplo n.º 27
0
        public void Join_TowWay()
        {
            var mappingSource = new FluentMappingSource(delegate(Type contextType)
            {
                var mapping      = new DataContextMapping(contextType);
                mapping.Provider = new ProviderAttribute(typeof(AccessDbProvider));

                mapping.Map <MyOrder>()
                .Table("Orders")
                .Column(o => o["OrderID"])
                .Column(o => o["CustomerID"]);

                mapping.Map <MyCustomer>()
                .Table("Customers")
                .Column(o => o["CustomerID"])
                .Column(o => o["ContactName"]);

                return(mapping);
            });
            var db = new DataContext("C:/Northwind.mdb", mappingSource)
            {
                Log = Console.Out
            };
            var customers = db.GetTable <MyCustomer>();
            var orders    = db.GetTable <MyOrder>();

            var items = (from c in customers
                         join o in orders on c["CustomerID"]
                         equals o["CustomerID"] into q
                         select new
            {
                ContactName = c["ContactName"],
                OrderCount = q.Count()
            }).ToList();

            Assert.IsTrue(items.Count > 0);
        }