From 04a058744a1e45b9350ee0c58db7f665fe0298ab Mon Sep 17 00:00:00 2001 From: Geo Perez Date: Mon, 2 Jul 2018 11:22:01 -0500 Subject: [PATCH] Testing with a lighter approach --- src/Unosquare.Labs.LiteLib/ILiteDbSet.cs | 20 +++++++++---------- .../Unosquare.Labs.LiteLib.csproj | 17 +++++----------- .../Unosquare.Labs.LiteLib.Tests.csproj | 3 ++- 3 files changed, 17 insertions(+), 23 deletions(-) diff --git a/src/Unosquare.Labs.LiteLib/ILiteDbSet.cs b/src/Unosquare.Labs.LiteLib/ILiteDbSet.cs index 4172015..93f4a32 100644 --- a/src/Unosquare.Labs.LiteLib/ILiteDbSet.cs +++ b/src/Unosquare.Labs.LiteLib/ILiteDbSet.cs @@ -86,7 +86,7 @@ public interface ILiteDbSet : ILiteDbSet /// /// Selects a set of entities from the database. - /// Example whereText = "X = @X" and whereParames = new { X = "hello" } + /// Example whereText = "X = @X" and whereParames = new { X = "hello" }. /// /// The where text. /// The where parameters. @@ -144,38 +144,38 @@ public interface ILiteDbSet : ILiteDbSet /// /// Deletes the asynchronous. - /// Example whereText = "X = @X" and whereParames = new { X = "hello" } + /// Example whereText = "X = @X" and whereParames = new { X = "hello" }. /// /// The where text. /// The where parameters. - /// A Task of type Enumerable with a generic type + /// A Task of type Enumerable with a generic type. Task DeleteAsync(string whereText, object whereParams); /// - /// Provides and asynchronous counterpart to the Select method + /// Provides and asynchronous counterpart to the Select method. /// /// The where text. /// The where parameters. - /// A Task of type Enumerable with a generic type + /// A Task of type Enumerable with a generic type. Task> SelectAsync(string whereText, object whereParams); /// /// Selects all asynchronous. /// - /// A Task of type Enumerable with a generic type + /// A Task of type Enumerable with a generic type. Task> SelectAllAsync(); /// - /// Provides and asynchronous counterpart to the Single method + /// Provides and asynchronous counterpart to the Single method. /// /// The row identifier. - /// A Task with a generyc type + /// A Task with a generyc type. Task SingleAsync(long rowId); /// - /// Provides and asynchronous counterpart to the Count method + /// Provides and asynchronous counterpart to the Count method. /// - /// A Task with the total number of rows + /// A Task with the total number of rows. Task CountAsync(); } } \ No newline at end of file diff --git a/src/Unosquare.Labs.LiteLib/Unosquare.Labs.LiteLib.csproj b/src/Unosquare.Labs.LiteLib/Unosquare.Labs.LiteLib.csproj index e883893..8da9914 100644 --- a/src/Unosquare.Labs.LiteLib/Unosquare.Labs.LiteLib.csproj +++ b/src/Unosquare.Labs.LiteLib/Unosquare.Labs.LiteLib.csproj @@ -3,13 +3,13 @@ A cool little wrapper for SQLite based on Dapper. LiteLib - netstandard2.0;net46 + netstandard2.0 true Unosquare.Labs.LiteLib LiteLib Full ..\..\StyleCop.Analyzers.ruleset - 0.15.4 + 0.16.1 Unosquare Unosquare Copyright (c) 2016-2018 Unosquare @@ -19,8 +19,8 @@ https://github.com/unosquare/litelib https://raw.githubusercontent.com/unosquare/litelib/master/litelib-logo.png git - orm sqlite dapper - true 7.2 + orm sqlite dapper database + 7.2 @@ -30,13 +30,6 @@ - - - - - - - - + diff --git a/test/Unosquare.Labs.LiteLib.Tests/Unosquare.Labs.LiteLib.Tests.csproj b/test/Unosquare.Labs.LiteLib.Tests/Unosquare.Labs.LiteLib.Tests.csproj index 5e3652e..32b16aa 100644 --- a/test/Unosquare.Labs.LiteLib.Tests/Unosquare.Labs.LiteLib.Tests.csproj +++ b/test/Unosquare.Labs.LiteLib.Tests/Unosquare.Labs.LiteLib.Tests.csproj @@ -1,7 +1,7 @@  - net46;netcoreapp2.1 + netcoreapp2.1 Unosquare.Labs.LiteLib.Tests Unosquare.Labs.LiteLib.Tests @@ -15,5 +15,6 @@ +