Describe the enhancement
For us to be able to set the SqLiteParameter.SqliteType property (like with any other RDBMS providers), we need to introduce an attribute that is capable of setting such property.
The propose name would be SqliteParameterDbTypeAttribute as the new standard of the others.
public class EntityClass
{
[SqliteParameterDbTypeAttribute(SqliteType.Text)]
public string Name { get; set; }
[SqliteParameterDbTypeAttribute(SqliteType.Blob)]
public byte[] Image { get; set; }
}
Describe the enhancement
For us to be able to set the
SqLiteParameter.SqliteTypeproperty (like with any other RDBMS providers), we need to introduce an attribute that is capable of setting such property.The propose name would be
SqliteParameterDbTypeAttributeas the new standard of the others.