Recolha de dados

Alejandro Cernuda



Trabalhar com coleções de dados às vezes leva a ciclos intermináveis e ineficiência de código. Em SQLClientCoreTool todas as operações CRUD podem ser implementadas em coletas de dados.

DataGather dataGather = DataGather.GetInstance(ConnectionString);

 

await dataGather.InsertListAsync(list);

await dataGather.UpdateManyAsync(list, null);

await dataGather.DeleteRangeAsync(list);


Nota: Para executar os métodos acima, deve haver uma tabela no banco de dados com o nome da classe que forma a coleção, e a coleção deve ter uma chave primária. Caso contrário, teríamos que especificar o nome da tabela. Talvez seja melhor explicado se colocarmos a afirmação de um dos métodos.

 /// <summary>

 /// Inserts an object into the Table named as objecttype.

 /// </summary>

 /// <param name="obj">Itstype has to match the name of the table in the database</param>

 /// <param name="tableName">Only if tableName is diferent to obj type name</param>

 /// <returns> if Table identity returns identityvalue else the number of inserted rows</returns>

 

    public asyncTask<int> InsertAsync(object obj, stringtableName = "")

        {

            return awaitTask.Run(() => Insert(obj, tableName));

        }