Ejemplo n.º 1
0
 private Cql(string cql, object[] args, CqlQueryOptions queryOptions)
 {
     AutoPage     = true;
     Statement    = cql;
     Arguments    = args;
     QueryOptions = queryOptions;
 }
Ejemplo n.º 2
0
        /// <inheritdoc />
        public Task DeleteAsync <T>(T poco, CqlQueryOptions queryOptions = null)
        {
            // Get the statement and bind values from POCO
            string             cql           = _cqlGenerator.GenerateDelete <T>();
            Func <T, object[]> getBindValues = _mapperFactory.GetValueCollector <T>(cql, primaryKeyValuesOnly: true);

            object[] values = getBindValues(poco);

            return(ExecuteAsync(Cql.New(cql, values, queryOptions ?? CqlQueryOptions.None)));
        }
Ejemplo n.º 3
0
        public void Update <T>(T poco, CqlQueryOptions queryOptions = null)
        {
            // Get statement and bind values from POCO
            string             cql           = _cqlGenerator.GenerateUpdate <T>();
            Func <T, object[]> getBindValues = _mapperFactory.GetValueCollector <T>(cql, primaryKeyValuesLast: true);

            object[] values = getBindValues(poco);

            _statements.Add(Cql.New(cql, values, queryOptions ?? CqlQueryOptions.None));
        }
Ejemplo n.º 4
0
        private void Insert <T>(bool ifNotExists, bool insertNulls, T poco, CqlQueryOptions queryOptions = null, int?ttl = null)
        {
            var pocoData        = _mapperFactory.PocoDataFactory.GetPocoData <T>();
            var queryIdentifier = string.Format("INSERT ID {0}/{1}", pocoData.KeyspaceName, pocoData.TableName);
            var getBindValues   = _mapperFactory.GetValueCollector <T>(queryIdentifier);
            //get values first to identify null values
            var values = getBindValues(poco);

            //generate INSERT query based on null values (if insertNulls set)
            object[] queryParameters;
            var      cql = _cqlGenerator.GenerateInsert <T>(insertNulls, values, out queryParameters, ifNotExists, ttl);

            _statements.Add(Cql.New(cql, queryParameters, queryOptions ?? CqlQueryOptions.None));
        }
Ejemplo n.º 5
0
        /// <inheritdoc />
        public Task InsertAsync <T>(T poco, bool insertNulls, int?ttl, CqlQueryOptions queryOptions = null)
        {
            var pocoData        = _mapperFactory.PocoDataFactory.GetPocoData <T>();
            var queryIdentifier = string.Format("INSERT ID {0}/{1}", pocoData.KeyspaceName, pocoData.TableName);
            var getBindValues   = _mapperFactory.GetValueCollector <T>(queryIdentifier);
            //get values first to identify null values
            var values = getBindValues(poco);

            object[] queryParameters;
            //generate INSERT query based on null values (if insertNulls set)
            var cql = _cqlGenerator.GenerateInsert <T>(insertNulls, values, out queryParameters, ttl: ttl);

            return(ExecuteAsync(Cql.New(cql, queryParameters, queryOptions ?? CqlQueryOptions.None)));
        }
Ejemplo n.º 6
0
 public CqlBatch(MapperFactory mapperFactory, CqlGenerator cqlGenerator, BatchType type)
 {
     if (mapperFactory == null)
     {
         throw new ArgumentNullException("mapperFactory");
     }
     if (cqlGenerator == null)
     {
         throw new ArgumentNullException("cqlGenerator");
     }
     _mapperFactory = mapperFactory;
     _cqlGenerator  = cqlGenerator;
     _statements    = new List <Cql>();
     BatchType      = type;
     Options        = new CqlQueryOptions();
 }
Ejemplo n.º 7
0
 /// <inheritdoc />
 public AppliedInfo <T> InsertIfNotExists <T>(T poco, CqlQueryOptions queryOptions = null)
 {
     return(InsertIfNotExists(poco, true, queryOptions));
 }
Ejemplo n.º 8
0
 /// <inheritdoc />
 public void Insert <T>(T poco, bool insertNulls, int?ttl, CqlQueryOptions queryOptions = null)
 {
     //Wait async method to be completed or throw
     TaskHelper.WaitToComplete(InsertAsync(poco, insertNulls, ttl, queryOptions), _queryAbortTimeout);
 }
Ejemplo n.º 9
0
 /// <inheritdoc />
 public void Insert <T>(T poco, bool insertNulls, CqlQueryOptions queryOptions = null)
 {
     Insert(poco, insertNulls, null, queryOptions);
 }
Ejemplo n.º 10
0
 /// <inheritdoc />
 public void Insert <T>(T poco, CqlQueryOptions queryOptions = null)
 {
     Insert(poco, true, queryOptions);
 }
Ejemplo n.º 11
0
 public void InsertIfNotExists <T>(T poco, bool insertNulls, int?ttl, CqlQueryOptions queryOptions = null)
 {
     Insert(true, insertNulls, poco, queryOptions, ttl);
 }
Ejemplo n.º 12
0
 public void Insert <T>(T poco, bool insertNulls, int?ttl, CqlQueryOptions queryOptions = null)
 {
     Insert(false, insertNulls, poco, queryOptions, ttl);
 }
Ejemplo n.º 13
0
 /// <inheritdoc />
 public void Delete <T>(T poco, CqlQueryOptions queryOptions = null)
 {
     //Wait async method to be completed or throw
     TaskHelper.WaitToComplete(DeleteAsync(poco, queryOptions), _queryAbortTimeout);
 }
Ejemplo n.º 14
0
 /// <inheritdoc />
 public Task <AppliedInfo <T> > InsertIfNotExistsAsync <T>(T poco, bool insertNulls, CqlQueryOptions queryOptions = null)
 {
     return(InsertIfNotExistsAsync(poco, insertNulls, null, queryOptions));
 }
Ejemplo n.º 15
0
 /// <inheritdoc />
 public Task <AppliedInfo <T> > InsertIfNotExistsAsync <T>(T poco, CqlQueryOptions queryOptions = null)
 {
     return(InsertIfNotExistsAsync(poco, true, queryOptions));
 }
Ejemplo n.º 16
0
 /// <inheritdoc />
 public Task InsertAsync <T>(T poco, bool insertNulls, CqlQueryOptions queryOptions = null)
 {
     return(InsertAsync(poco, insertNulls, null, queryOptions));
 }
Ejemplo n.º 17
0
 /// <inheritdoc />
 public Task InsertAsync <T>(T poco, CqlQueryOptions queryOptions = null)
 {
     return(InsertAsync(poco, true, queryOptions));
 }
Ejemplo n.º 18
0
 /// <inheritdoc />
 public Task <IPage <T> > FetchPageAsync <T>(CqlQueryOptions options = null)
 {
     return(FetchPageAsync <T>(Cql.New(string.Empty, new object[0], options ?? new CqlQueryOptions())));
 }
Ejemplo n.º 19
0
 /// <inheritdoc />
 public AppliedInfo <T> InsertIfNotExists <T>(T poco, bool insertNulls, CqlQueryOptions queryOptions = null)
 {
     return(InsertIfNotExists(poco, insertNulls, null, queryOptions));
 }
Ejemplo n.º 20
0
 /// <inheritdoc />
 public AppliedInfo <T> InsertIfNotExists <T>(T poco, bool insertNulls, int?ttl, CqlQueryOptions queryOptions = null)
 {
     return(TaskHelper.WaitToComplete(InsertIfNotExistsAsync(poco, insertNulls, ttl, queryOptions), _queryAbortTimeout));
 }
Ejemplo n.º 21
0
 /// <inheritdoc />
 public IEnumerable <T> Fetch <T>(CqlQueryOptions queryOptions = null)
 {
     // Just let the SQL be auto-generated
     return(Fetch <T>(Cql.New(string.Empty, new object[0], queryOptions ?? CqlQueryOptions.None)));
 }
Ejemplo n.º 22
0
 /// <inheritdoc />
 public Task <IEnumerable <T> > FetchAsync <T>(CqlQueryOptions options = null)
 {
     return(FetchAsync <T>(Cql.New(string.Empty, new object[0], options ?? CqlQueryOptions.None)));
 }
Ejemplo n.º 23
0
 /// <inheritdoc />
 public IPage <T> FetchPage <T>(CqlQueryOptions queryOptions = null)
 {
     return(FetchPage <T>(Cql.New(string.Empty, new object[0], queryOptions ?? new CqlQueryOptions())));
 }
Ejemplo n.º 24
0
 internal static Cql New(string cql, object[] args, CqlQueryOptions queryOptions)
 {
     return(new Cql(cql, args, queryOptions));
 }
Ejemplo n.º 25
0
 public void InsertIfNotExists <T>(T poco, CqlQueryOptions queryOptions = null)
 {
     InsertIfNotExists(poco, true, queryOptions);
 }