Esempio n. 1
0
        public static void UpdatePerson()
        {
            var context = new BreakAwayContext();
            var person  = context.People.FirstOrDefault();

            person.FirstName = "Rowena";
            context.SaveChanges();
        }
Esempio n. 2
0
        public static void UpdateTrip()
        {
            var context = new BreakAwayContext();
            var trip    = context.Trips.FirstOrDefault();

            trip.CostUSD = 750;
            context.SaveChanges();
        }
Esempio n. 3
0
        public static void InsertPerson()
        {
            var person = new Person
            {
                FirstName            = "Rowan",
                LastName             = "Miller",
                SocialSecurityNumber = 12345678
            };
            var context = new BreakAwayContext();

            context.People.Add(person);
            context.SaveChanges();
        }
Esempio n. 4
0
        public static void InsertDestination()
        {
            var destination = new Destination
            {
                Country     = "Indonesia",
                Description = "EcoTourism at its best in exquisite Bali",
                Name        = "Bali"
            };
            var context = new BreakAwayContext();

            context.Destinations.Add(destination);
            context.SaveChanges();
        }
Esempio n. 5
0
        public static void InsertLodging()
        {
            var lodging = new Lodging
            {
                Name        = "Rainy Day Motel",
                Destination = new Destination
                {
                    Name    = "Seattle, Washington",
                    Country = "USA"
                }
            };

            using (var context = new BreakAwayContext())
            {
                context.Lodgings.Add(lodging);
                context.SaveChanges();
            }
        }
Esempio n. 6
0
        public static void InsertResort()
        {
            var resort = new Resort
            {
                Name = "Top Notch Resort and Spa",
                MilesFromNearestAirport = 30,
                Activities  = "Spa, Hiking, Skiing, Ballooning",
                Destination = new Destination
                {
                    Name    = "Stowe, Vermont",
                    Country = "USA"
                }
            };

            using (var context = new BreakAwayContext())
            {
                context.Lodgings.Add(resort);
                context.SaveChanges();
            }
        }
Esempio n. 7
0
        public static void DeleteDestinationInMemoryAndDbCascade()
        {
            int destinationId;

            using (var context = new BreakAwayContext())
            {
                var destination = new Destination
                {
                    Name     = "Sample Destination",
                    Lodgings = new List <Lodging>
                    {
                        new Lodging {
                            Name = "Lodging One"
                        },
                        new Lodging {
                            Name = "Lodging One"
                        }
                    }
                };
                context.Destinations.Add(destination);
                context.SaveChanges();
                destinationId = destination.DestinationId;
            }

            using (var context = new BreakAwayContext())
            {
                var destination = context.Destinations
                                  .Single(d => d.DestinationId == destinationId);

                context.Destinations.Remove(destination);
            }

            using (var context = new BreakAwayContext())
            {
                var lodgings = context.Lodgings
                               .Where(l => l.DestinationId == destinationId).ToList();
                Console.WriteLine("Lodgings: {0}", lodgings.Count);
            }
        }