csharp
var storageOptions = new StorageOptions
{
};
using (var db = new VelocityDB(storageOptions))
{
}
csharp
var storageOptions = new StorageOptions
{
};
using (var db = new VelocityDB(storageOptions))
{
}
csharp
[Serializable]
public class MyEntity : OptimizedPersistable
{
public string Name { get; set; }
}
using (var db = new VelocityDB())
{
var entityIndex = db.IndexManager.EntityIndex<MyEntity>();
}