3 instantiations of NoDataRecord
Microsoft.Extensions.VectorData.ConformanceTests (3)
ModelTests\NoDataModelTests.cs (3)
31NoDataRecord inserted = new() 61new() 66new()
10 references to NoDataRecord
Microsoft.Extensions.VectorData.ConformanceTests (10)
ModelTests\NoDataModelTests.cs (10)
20var expectedRecord = fixture.TestData[0]; 22var received = await Collection.GetAsync(expectedRecord.Key, new() { IncludeVectors = includeVectors }); 31NoDataRecord inserted = new() 40var received = await Collection.GetAsync(expectedKey, new() { IncludeVectors = true }); 53protected VectorStoreCollection<TKey, NoDataRecord> Collection => fixture.Collection; 55public abstract class Fixture : VectorStoreCollectionFixture<TKey, NoDataRecord> 59protected override List<NoDataRecord> BuildTestData() => 78new VectorStoreKeyProperty(nameof(NoDataRecord.Key), typeof(TKey)), 79new VectorStoreVectorProperty(nameof(NoDataRecord.Floats), typeof(ReadOnlyMemory<float>), 3) 92public void AssertEqual(NoDataRecord? other, bool includeVectors, bool compareVectors)