The above answers are correct but since the signature for SqlQuery is
SqlQuery(sql:String, params object[] parameters), you can simplify the code and give it a more natural feel by using:
context.SqlQuery(sql, latParam, lngPara);
This would be perfectly legal without having to array it first.