quill.attributes

Members

Manifest constants

omit
enum omit;

The property to which this attribute is attached will not be mapped into the result

Structs

bind
struct bind

Specifies a column name in a user defined attribute on a property.

Examples

class Model
{
    int id;
    @bind("columnName") string name;
}
class Model
{
    int id;
    @ignore string name;
}

See Also

quill.mapper

Meta

License

The MIT License, see license file

Authors

Chris Barnes