DbExpressions
DbExpressions copied to clipboard
Add support for shema/owner specification
Add support for default schema.
dbSelectQuery.SetDefaultSchema("dbo")
.Select(e => e.Column("SomeColumn")).From(e => e.table("SomeTable"));
SQL SERVER
SELECT [SomeColumn] FROM [dbo].[SomeTable]
Also make it possible to provide the schema using the Table factory method