dquery v0.1.3 (2015-07-04T22:24:23Z)
Dub
Repo
User
dquery
tests
validation
Undocumented in source.
version(unittest)
@
Entity
class
User {
@
Id
@
Column
ulong
id
;
@
Column
("user_name")
string
username
;
@
Column
string
email
;
this
();
this
(User user);
this
(string username, string email);
this
(ulong id, string username, string email);
string
getCleanUsername
();
}
Constructors
this
this
()
Undocumented in source.
this
this
(User user)
Undocumented in source.
this
this
(string username, string email)
Undocumented in source.
this
this
(ulong id, string username, string email)
Undocumented in source.
Members
Functions
getCleanUsername
string
getCleanUsername
()
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
email
string
email
;
Undocumented in source.
id
ulong
id
;
Undocumented in source.
username
string
username
;
Undocumented in source.
Meta
Source
See Implementation
dquery
tests
validation
classes
User
structs
Column
Entity
Id