Bumped package version to 1.1.2. Improved documentation, simplified the column attribute and added the ability to mark columns as unique. Indexes now don't need a name to be specified, one will be generated if none is provided, and a few other wording changes and renaming was done.
This commit is contained in:
@ -10,7 +10,7 @@ namespace MontoyaTech.MySqlPlus.Example
|
||||
[MySqlRowIndex("year", "year")]
|
||||
public class Car
|
||||
{
|
||||
[MySqlColumn(Id = true, Name = "id", PrimaryKey = true, AutoIncrement = true)]
|
||||
[MySqlColumn(Name = "id", PrimaryKey = true, AutoIncrement = true)]
|
||||
public ulong Id = 0;
|
||||
|
||||
[MySqlColumn("make")]
|
||||
|
Reference in New Issue
Block a user