ModelBuilder.ValueGeneratorMatcher.ValueGeneratorMatcher C# (CSharp) Method

ValueGeneratorMatcher() protected method

Initializes a new instance of the ValueGeneratorMatcher class.
The parameter is null.
protected ValueGeneratorMatcher ( ) : System
return System
        protected ValueGeneratorMatcher(params Type[] types)
        {
            if (types == null)
            {
                throw new ArgumentNullException(nameof(types));
            }

            _matcher = (type, referenceName, context) => { return types.Any(x => x == type); };
        }

Same methods

ValueGeneratorMatcher::ValueGeneratorMatcher ( Regex expression ) : System
ValueGeneratorMatcher::ValueGeneratorMatcher ( string referenceName ) : System