i found a simple bug, in which i cannot use Contains, StartsWith and
several String filters and found thisin DBlinq.Firebird

under FirebirdSqlProvider.cs

change this

protected override SqlStatement GetLiteralStringConcat(SqlStatement a,
SqlStatement b)
{
            return SqlStatement.Format("{0} || {1}", a, b);

}

previously it was

protected override SqlStatement GetLiteralStringConcat(SqlStatement a,
SqlStatement b)
{
            return SqlStatement.Format("CONCAT({0}, {1})", a, b);

}

it was returning an error that CONCAT function is unavailable in
Firebird,

check this: http://www.firebirdsql.org/manual/qsg2-databases.html#d0e4490

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"DbLinq" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to