/// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public override object this[IProperty property]
 {
     get { return(GetValueInternal(EntityType.CheckPropertyBelongsToType(property))); }
     set { SetValueInternal(EntityType.CheckPropertyBelongsToType(property), value); }
 }
Пример #2
0
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public override object this[IProperty property]
 {
     get { return(_values[EntityType.CheckPropertyBelongsToType(property).GetIndex()]); }
     set { SetValue(EntityType.CheckPropertyBelongsToType(property).GetIndex(), value); }
 }