private static void Table(
     ICustomizersHolder customizerHolder,
     object[] attributes)
 {
     var attribute = attributes.GetAttribute<TableAttribute>();
     if (attribute != null)
     {
         customizerHolder.Table(attribute.Name, attribute.Schema);
     }
 }
Esempio n. 2
0
        private static void Table(
            ICustomizersHolder customizerHolder,
            object[] attributes)
        {
            var attribute = attributes.GetAttribute <TableAttribute>();

            if (attribute != null)
            {
                customizerHolder.Table(attribute.Name, attribute.Schema);
            }
        }