Dashing.Configuration.DefaultConvention.PrimaryKeyCandidate.PrimaryKeyCandidate C# (CSharp) Méthode

PrimaryKeyCandidate() public méthode

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