• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jpacelli62 / Faaast / 9208093962

23 May 2024 12:36PM UTC coverage: 62.219% (-0.1%) from 62.332%
9208093962

push

github

Jérôme PACELLI
Add Quotes in Alias<T>

505 of 876 branches covered (57.65%)

Branch coverage included in aggregate %.

0 of 9 new or added lines in 3 files covered. (0.0%)

1 existing line in 1 file now uncovered.

1906 of 2999 relevant lines covered (63.55%)

17.22 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Faaast.Orm.QueryBuilder/FaaastQueryDb.cs
1
using System;
2
using SqlKata;
3
using SqlKata.Compilers;
4

5
namespace Faaast.Orm
6
{
7
    public abstract class FaaastQueryDb : FaaastDb
8
    {
9
        public abstract Compiler Compiler { get; }
10

NEW
11
        public virtual string Quotes { get; } = "{0}";
×
12

13
        protected FaaastQueryDb(IServiceProvider services) : base(services)
×
14
        {
×
15
        }
×
16

17
        public Query Sql => new FaaastQuery(this);
×
18

19
        public virtual CompiledQuery Compile(Query query)
20
        {
×
21
            var result = this.Compiler.Compile(query);
×
22
            return new CompiledQuery(result.Sql, result.NamedBindings);
×
23
        }
×
24
    }
25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc