MySql.Data.Entity.InputFragment.GetProperty C# (CSharp) 메소드

GetProperty() 공개 메소드

public GetProperty ( string propertyName ) : SqlFragment
propertyName string
리턴 SqlFragment
        public virtual SqlFragment GetProperty(string propertyName)
        {
            if (Left != null && Left.Name == propertyName) return Left;
            if (Right != null && Right.Name == propertyName) return Right;
            return null;
        }