Benchmarkr.SQLite.Benchmark.InsertObject C# (CSharp) Method

InsertObject() public method

public InsertObject ( uint index ) : void
index uint
return void
        public override void InsertObject(uint index)
        {
            var employee = new Employee
            { 
                Name = BenchmarkBase.NameValue(index),
                Age = BenchmarkBase.AgeValue(index),
                IsHired = BenchmarkBase.IsHiredValue(index)
            };
            this.connection.Insert(employee);
        }