Concise queries, reduce to functionality
- Remove DataStorage qualifier, add using statements - Remove unnecessary query variables and string.formatting statements - Remove duplicate code, reuse .RecordCount method
This commit is contained in:
parent
473655c2ce
commit
f8f70f46e6
16 changed files with 111 additions and 143 deletions
|
|
@ -154,8 +154,7 @@ namespace MatterControl.Tests
|
|||
private bool NamedCollectionExists(string nameToLookFor)
|
||||
{
|
||||
string query = string.Format("SELECT * FROM PrintItemCollection WHERE Name = '{0}' ORDER BY Name ASC;", nameToLookFor);
|
||||
IEnumerable<PrintItemCollection> result = (IEnumerable<PrintItemCollection>)Datastore.Instance.dbSQLite.Query<PrintItemCollection>(query);
|
||||
foreach (PrintItemCollection collection in result)
|
||||
foreach (PrintItemCollection collection in Datastore.Instance.dbSQLite.Query<PrintItemCollection>(query))
|
||||
{
|
||||
if (collection.Name == nameToLookFor)
|
||||
{
|
||||
|
|
@ -169,8 +168,7 @@ namespace MatterControl.Tests
|
|||
private bool NamedItemExists(string nameToLookFor)
|
||||
{
|
||||
string query = string.Format("SELECT * FROM PrintItem WHERE Name = '{0}' ORDER BY Name ASC;", nameToLookFor);
|
||||
IEnumerable<PrintItem> result = (IEnumerable<PrintItem>)Datastore.Instance.dbSQLite.Query<PrintItem>(query);
|
||||
foreach (PrintItem collection in result)
|
||||
foreach (PrintItem collection in Datastore.Instance.dbSQLite.Query<PrintItem>(query))
|
||||
{
|
||||
if (collection.Name == nameToLookFor)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue