コード例 #1
0
ファイル: Taggable.cs プロジェクト: davelondon/dontstayin
		public CachedSqlSelect<Tag> ChildTags(Q where, params KeyValuePair<object, OrderBy.OrderDirection>[] orderBy)
		{
			Photo photo = new Photo(K);
			return photo.ChildTags(where, orderBy);
		}
コード例 #2
0
ファイル: Taggable.cs プロジェクト: davelondon/dontstayin
		public CachedSqlSelect<Tag> ChildTags(Q where)
		{
			Photo photo = new Photo(K);
			return photo.ChildTags(where);
		}