I use BlToolkit and want it to do not use parameters in final compiled query.
EXAMPLE: The query it compiles :
-- Sql MsSql2005
-- DECLARE @p1 Int64
-- SET @p1 = 101671702
SELECT * FROM dbo.Table1 WHERE Id = @p1
but I want it to compile like this:
-- Sql MsSql2005
SELECT * FROM dbo.Table1 WHERE Id = 101671702
Any idea?