mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-14 11:48:28 -04:00
9 lines
171 B
C#
9 lines
171 B
C#
namespace SpacetimeDB;
|
|
|
|
public abstract record DbContext<DbView>(DbView Db)
|
|
where DbView : class, new()
|
|
{
|
|
public DbContext()
|
|
: this(new DbView()) { }
|
|
}
|