コード例 #1
0
ファイル: bn_HashTag.cs プロジェクト: tampham47/juddy.vn
        public List <pb_HashTag> GetByProductId(Guid productId)
        {
            var result = db.pb_HashTag_GetbyProductId(productId)
                         .Where(m => m.Type != EHashtag_Type.System)
                         .ToList();

            return(result);
        }