Dashing.Configuration.DefaultConvention.PrimaryKeyCandidate.PrimaryKeyCandidate C# (CSharp) Method

PrimaryKeyCandidate() public method

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