mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:06:30 +00:00
12 lines
377 B
C#
12 lines
377 B
C#
using Azaion.Repository.Entities;
|
|
using LinqToDB;
|
|
using LinqToDB.Data;
|
|
|
|
namespace Azaion.Repository;
|
|
|
|
public class AzaionDbSql(DataOptions dataOptions) : DataConnection(dataOptions)
|
|
{
|
|
public ITable<Media> Medias => this.GetTable<Media>();
|
|
public ITable<User> Users => this.GetTable<User>();
|
|
public ITable<Annotation> Annotations => this.GetTable<Annotation>();
|
|
} |