Esempio n. 1
0
        private string CreateMapFor <T>(string type) where T : class
        {
            var writer = new TypeMappingWriter <T>(type, PropertyNameResolver);

            return(writer.MapFromAttributes());
        }
Esempio n. 2
0
        private string CreateMapFor(Type t, string type, int maxRecursion = 0)
        {
            var writer = new TypeMappingWriter(t, type, maxRecursion);

            return(writer.MapFromAttributes());
        }