Skip to content

TopForumDao

Namespace: SlottyMedia.Database.Daos

This class represents the Forum table in the database.

public class TopForumDao : Supabase.Postgrest.Models.BaseModel

Inheritance Object → BaseModel → TopForumDao

Properties

ForumId

The ID of the Forum. This is the Primary Key. It is auto-generated.

public Nullable<Guid> ForumId { get; set; }

Property Value

Nullable<Guid>

ForumTopic

The Title of the Forum.

public string ForumTopic { get; set; }

Property Value

String

post_count

The Count of Posts in the Forum.

public Nullable<int> post_count { get; set; }

Property Value

Nullable<Int32>

BaseUrl

public string BaseUrl { get; set; }

Property Value

String

RequestClientOptions

public ClientOptions RequestClientOptions { get; set; }

Property Value

ClientOptions

TableName

public string TableName { get; }

Property Value

String

PrimaryKey

public Dictionary<PrimaryKeyAttribute, object> PrimaryKey { get; }

Property Value

Dictionary<PrimaryKeyAttribute, Object>

Constructors

TopForumDao()

The default constructor.

public TopForumDao()

TopForumDao(String)

The constructor with parameters.

public TopForumDao(string forumTopic)

Parameters

forumTopic String
The Topic of the Forum

Methods

ToString()

The ToString method returns a string representation of the object.

public string ToString()

Returns

String