Beispiel #1
0
 public void Apply(SQLiteParameterCollection collection)
 {
     collection.AddRange(
         values.Convert(p => p.Key.CreateParameter(p.Value))
         );
 }
Beispiel #2
0
 static public void Set(this SQLiteParameterCollection item, IEnumerable <SQLiteParameter> to_add)
 {
     item.Clear();
     item.AddRange(to_add);
 }