Here is my problem in more details:
i am using adapter. I have written template which generates static CRUD methods for each entity, like: InsertUser, UpdateUser, DeleteUser, GetUser, GetAllUsers etc. Those are generated in a new file per entity, e.g. UserEntityCrud.cs which holds all those methods specific to UserEntity. Now, i would like to group those methods, to generate just one file per group of entities. For example, i would like to generate UserAdministration.cs file which will hold those methods for UserEntity, those methods for UserAccount entity, those methods for UserRight entity, separated by region. I would also like to generate another file, e.g. GameAdministration.cs which will hold those CRUD methods for entities like Game, GameRule, and so on. I put prefixes in my database table names, e.g. 'u' for user group, like: uUser, uUserAccount, uUserRight, 'g' for tables related to games, like: gGame, gGameRule and so on. I know I can strip those prefixes when generating entities in llbl, and i am doing so. Now I need a task performer which will generate those files (UserAdministration, GameAdministration...) using those database tables prefixes to define in which group to put CRUD methods for some entity. Could you please help me with that, with some informations, links, examples which show how can I generate new task performer, and within it how can i loop through each entity, resolve its database table name (to get prefix, like 'u' for users) to know in which file I should generate those methods., resolve entity name and stuff like that. I would appreciate this very much, because i am googling whole morning without much success. I thank in advance!