/// <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 virtual void AddIndexConfiguration( [NotNull] EntityConfiguration entityConfiguration, [NotNull] Index index) { Check.NotNull(entityConfiguration, nameof(entityConfiguration)); Check.NotNull(index, nameof(index)); entityConfiguration.FluentApiConfigurations.Add( _configurationFactory.CreateIndexConfiguration("e", index)); }