I need some help in using "like" condition in Subsonic 2.2
Following is my query
DAL.DB.Select()
.From("tblName")
.Where("NewFirstName")
.Like(strFirstName)
.Or("PrevFirstName")
.Like(strFirstName)
.ExecuteDataSet();
the result returned by above query contains records those have firstname euqal to strFirstName not like strFirstName
example: there are two records which has NewFirstName as 'joe' and 'joe J' so above query just returns record that has 'joe' as NewFirstName .