예제 #1
0
            public static DataTable GetActions()
            {
                const string sql = "SELECT * FROM [dbo].[Actions] ORDER BY [Area], [Controller], [Action]";

                using (var db = new MsSql(DbName.Official)) {
                    return(db.Table(CommandType.Text, sql));
                }
            }