Improved MySqlManagedConnection retry logic. Added new MySqlRowIndex attribute to specify the indexes for a given row. Improved documentation and the example program. Bumped version number to 1.0.5
This commit is contained in:
@ -6,6 +6,8 @@ namespace MontoyaTech.MySqlPlus.Example
|
||||
public class Program
|
||||
{
|
||||
[MySqlRow("cars")]
|
||||
[MySqlRowIndex("make_model", "model", "year")]
|
||||
[MySqlRowIndex("year", "year")]
|
||||
public class Car
|
||||
{
|
||||
[MySqlColumn(Id = true, Name = "id", PrimaryKey = true, AutoIncrement = true, Nullable = false)]
|
||||
|
Reference in New Issue
Block a user