public void SelectContentUpdates(SelectContentUpdates value, Action <dynamic> yield)
 {
     WithConnection(
         c =>
     {
         value.ExecuteReader(c).WithEach(yield);
     }
         );
 }
 public void SelectContentUpdates(SelectContentUpdates value, Action<dynamic> yield)
 {
     WithConnection(
         c =>
         {
             value.ExecuteReader(c).WithEach(yield);
         }
      );
 }
        public void SelectContentUpdates(SelectContentUpdates value, Action<string> yield)
        {


            WithConnection(
                c =>
                {
                    if (ListMode)
                    {
                        // Collection was modified; enumeration operation may not execute.

                        //Implementation not found for type import :
                        //type: System.Linq.Enumerable
                        //method: System.Collections.Generic.IEnumerable`1[com.abstractatech.multimouse.Schema.PointerSyncQueries+Insert] Where[Insert](System.Collections.Generic.IEnumerable`1[com.abstractatech.multimouse.Schema.PointerSyncQueries+Insert], System.Func`3[com.abstractatech.multimouse.Schema.PointerSyncQueries+Insert,System.Int32,System.Boolean])
                        //Did you forget to add the [Script] attribute?
                        //Please double check the signature!

                        //                        Implementation not found for type import :
                        //type: System.Linq.Enumerable
                        //method: System.Collections.Generic.IEnumerable`1[com.abstractatech.multimouse.Schema.PointerSyncQueries+Insert] Skip[Insert](System.Collections.Generic.IEnumerable`1[com.abstractatech.multimouse.Schema.PointerSyncQueries+Insert], Int32)
                        //Did you forget to add the [Script] attribute?
                        //Please double check the signature!

                        //InsertList.Skip(value.FromTransaction + 1).Take(value.ToTransaction - value.FromTransaction).WithEach(

                        for (int i = value.FromTransaction + 1; i <= value.ToTransaction; i++)
                        {
                            // Object reference not set to an instance of an object.

                            // memento got it!
                            if (InsertList[i] != null)
                                yield(InsertList[i].message);

                        }



                        return;
                    };


                    value.ExecuteReader(c).WithEach(
                        r =>
                        {
                            string message = r.message;

                            yield(message);
                        }
                    );
                }
             );
        }