Link Search Menu Expand Document

TypeName


This attribute sets the SQLiteParameter.TypeName property value via a class property.

Only works with the System.Data.SQLite package.

Attribute

Example usage:

public class Person
{
    public int Id { get; set; }

    [TypeName("TypeName")]
    public string Name { get; set; }
}

Fluent Mapping

To configure via FluentMapper:

FluentMapper
    .Entity<Person>()
    .PropertyValueAttributes(e => e.Name, new TypeNameAttribute("TypeName"));

Retrieval

Retrieve the attribute via PropertyValueAttributeCache:

var attribute = PropertyValueAttributeCache
    .Get<Person>(e => e.Name)?
    .FirstOrDefault(e => e.GetType() == typeof(TypeNameAttribute));

Or via PropertyValueAttributeMapper:

var attribute = PropertyValueAttributeMapper
    .Get<Person>(e => e.Name)?
    .FirstOrDefault(e => e.GetType() == typeof(TypeNameAttribute));

We strongly recommend using PropertyValueAttributeCache for maximum performance.