Active Record simple query: like
public static IList FindByName(string name) { SimpleQuery query = new SimpleQuery ( @"from Students stu where stu.Name like ?", "%"+name+"%" ); return (IList )ActiveRecordBase .ExecuteQuery(query); }
More info about query:
http://www.cnblogs.com/Terrylee/archive/2006/07/15/372823.html
SQL Trim:
UPDATE Courses
SET Poly = LTRIM(RTRIM(Poly))
今天完成了JPAE 的最后更新。包括Admin Module搜索按钮的更新。还有JPAE SPM/STPM的UI设计。