Class DatabaseWithObjectStores
Database with an array of object stores.
public sealed record DatabaseWithObjectStores : IEquatable<DatabaseWithObjectStores>
- Inheritance
-
DatabaseWithObjectStores
- Implements
- Inherited Members
Constructors
DatabaseWithObjectStores(string, double, ImmutableArray<ObjectStore>)
Database with an array of object stores.
public DatabaseWithObjectStores(string Name, double Version, ImmutableArray<ObjectStore> ObjectStores)
Parameters
NamestringDatabase name.
VersiondoubleDatabase version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
ObjectStoresImmutableArray<ObjectStore>Object stores in this database.
Properties
Name
Database name.
public string Name { get; init; }
Property Value
ObjectStores
Object stores in this database.
public ImmutableArray<ObjectStore> ObjectStores { get; init; }
Property Value
Version
Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
public double Version { get; init; }