Following section demonstrates insertion by Model.
In this sample; columns "OrderID" is AutoIncrement field, and "ShipperID" will be accepted as its default values.
		// the new model to be inserted
        var order = new Orders();
            // order.OrderID = AutoIncrement;
            order.CustomerID = 90;
            order.EmployeeID = 8;
            order.OrderDate = DateTime.Now;
            // order.ShipperID <= accepted its DefaultValue;
		
         {{hl}}var query = Odb.SQL.Insert();{{/hl}}
         {{hl}}     query.Add(order);{{/hl}}

		var affected_rows = connection.Sql(query).NonQuery();
    
XDFx1Y