DbExpressions icon indicating copy to clipboard operation
DbExpressions copied to clipboard

Add support for shema/owner specification

Open seesharper opened this issue 14 years ago • 0 comments

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

seesharper avatar Nov 22 '11 14:11 seesharper