8 instantiations of ValueType1
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (8)
CachedExpressionCompilerTest.cs (8)
569ValueTypeModel = new ValueType1 595ValueTypeModel = new ValueType1 { TestModel = null }, 640NullableValueTypeModel = new ValueType1 718var model = new ValueType1 738var model = new ValueType1 758var model = new ValueType1 777var model = new ValueType1 { NullableValueType2 = null }; 793var model = new ValueType1 { NullableValueType2 = null };
12 references to ValueType1
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (12)
CachedExpressionCompilerTest.cs (12)
718var model = new ValueType1 722var expression = GetExpression<ValueType1, string>(m => m.ValueType2.Name); 738var model = new ValueType1 742var expression = GetExpression<ValueType1, DateTime>(m => m.ValueType2.Date); 758var model = new ValueType1 762var expression = GetExpression<ValueType1, string>(m => m.NullableValueType2.Value.Name); 777var model = new ValueType1 { NullableValueType2 = null }; 778var expression = GetExpression<ValueType1, string>(m => m.NullableValueType2.Value.Name); 793var model = new ValueType1 { NullableValueType2 = null }; 794var expression = GetExpression<ValueType1, DateTime>(m => m.NullableValueType2.Value.Date); 934public ValueType1 ValueTypeModel { get; set; } 936public ValueType1? NullableValueTypeModel { get; set; }