Exemplo n.º 1
0
        public static void RegisterTableConventions(string database, ITableConventions conventions)
        {
            if (String.IsNullOrEmpty(database)) throw new ArgumentNullException("database");

            Conventions[database.ToLowerInvariant()] = conventions;
        }
Exemplo n.º 2
0
 protected Table(ITableFactory factory, ITableConventions conventions)
 {
     Factory = factory;
     Conventions = conventions;
 }