//---------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Globalization;
using System.Text;
using System.Threading;
namespace System.Data.Metadata.Edm
{
///
/// Cached dynamic method to get the property value from a CLR instance
///
internal class NavigationPropertyAccessor
{
#region Constructors
public NavigationPropertyAccessor(string propertyName)
{
_propertyName = propertyName;
}
#endregion
#region Fields
private Func