Dashing.Configuration.DefaultConvention.PrimaryKeyCandidate.PrimaryKeyCandidate C# (CSharp) 메소드

PrimaryKeyCandidate() 공개 메소드

public PrimaryKeyCandidate ( string propertyName, int score ) : System
propertyName string
score int
리턴 System
            public PrimaryKeyCandidate(string propertyName, int score)
                : this() {
                this.PropertyName = propertyName;
                this.Score = score;
            }
        }
DefaultConvention.PrimaryKeyCandidate