5 references to ReservedKeyStorageName
Microsoft.Extensions.VectorData.Abstractions (5)
ProviderServices\CollectionJsonModelBuilder.cs (3)
73var keyPropertyWithReservedName = Options.ReservedKeyStorageName is not null && property is KeyPropertyModel; 78if (keyPropertyWithReservedName && jsonPropertyNameAttribute.Name != Options.ReservedKeyStorageName) 80throw new InvalidOperationException($"The key property for your provider must always have the reserved name '{Options.ReservedKeyStorageName}' and cannot be changed.");
ProviderServices\CollectionModelBuilder.cs (2)
344if (property is KeyPropertyModel && Options.ReservedKeyStorageName is not null) 347property.StorageName = Options.ReservedKeyStorageName;