예제 #1
0
        static async Task GetByNavigation(DefaultContainer context)
        {
            var me = await context.Me.GetValueAsync();

            await context.LoadPropertyAsync(me, "Trips");

            foreach (var t in me.Trips)
            {
                Console.WriteLine("GET BY USING LOAD PROPERTY OPERATOR??:");
                Console.WriteLine(t.Name);
                Console.WriteLine("------------------------------------------");
            }
        }