Skip to content

brentcodes/ToDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ToDB, a sql generation utility.

ToDB does not aim to abstract away sql, only to make it much easier to write within C#. ToDB gives you the freedom to create your own high quality queries, without the troublesome syntax errors you miss until runtime as with standard inline sql.

You must still understand sql to use this utility. It is also your responsiblity to gaurd against sql injection as this library does not completly mitigate this risk.

ToDB can be used independently, but is geared torwards use with StackExchange's Dapper.net

Basic select statement, any order is allowed

var cmd = new ToDBCommand();
cmd.From("Order")
    .Select("OrderNumber", "OrderId")
    .Where(
        where => where.AreEqual("OrderType", "@OrderType")
    );
if (getMoreInfo)
{
    cmd.Select("OrderDescription,OrderName");
}
string sql = cmd.ToSql();
select OrderNumber,OrderId,OrderDescription,OrderName from Order where OrderType=@OrderType

Join

cmd.SelectAllFrom("Order")
    .InnerJoin("Customer", on => 
        on.AreEqual("Order.CustomerId", "Customer.CustomerId")
        .And()
        .AreEqual("Order.RegionId", "Customer.RegionId")
    );
select * from Order 
	inner join Customer 
		on Order.CustomerId=Customer.CustomerId 
		and Order.RegionId=Customer.RegionId

How lucky, our model matches our database schema

var parameters = new { CompanyId = 5 };
cmd.SelectFrom<Company>()
    .Where(
        where => where.IsEqual(() => parameters.CompanyId)
    );
select CompanyId,CompanyName from Company where CompanyId=@CompanyId

Complex queries

cmd.From("Product")
    .Select("OrderNumber")
    .Select(subQuery =>
        subQuery.Select("sum(Price)").From("Product")
    , "Total")
    .Where(where =>
        where.IsEqual(() => parameters.CustomerId)
        .And(either =>  
            either.IsGreaterOrEqual(() => parameters.MinimumOder)
            .Or()
            .IsEqual(() => parameters.IsVeryImportant))
    );
select OrderNumber,(select sum(Price) from Product) Total
	from Product
	where CustomerId=@CustomerId 
		and (MinimumOrder>=@MinimumOrder or IsVeryImportant=@IsVeryImportant)

Releases

No releases published

Packages

No packages published

Languages