摘要:
public IQueryable<E_Admin_Role_Menu> GetRoleMenu() { var linq = from role in DB.Admin_Role_Menu join menu in DB.Admin_Menu on role.MenuId equals menu.MenuId join column in DB.Admin_Column on menu.Col... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace C2buy.Framework.Utility.StopWords{ public class TrieTree { private readonly Dictionary<char, TrieTree> Children; public bool End { get; set; } public TrieTree() { ... 阅读全文