ok now. oops, forgot to rebuild the schema provider dll (since it references SchemaExplorer.DLL in the codesmith directory)
received this warning on the build. anyone remedy this already or have a recommendation?
C:\TEMP\OracleNativeSchemaProvider\OracleNativeSchemaProvider.cs(979): 'SchemaExplorer.ViewColumnSchema.ViewColumnSchema(SchemaExplorer.ViewSchema, string, System.Data.DbType, string, int, byte, int, SchemaExplorer.ExtendedProperty[])' is obsolete: 'Please use the constructors that contain the allowDBNull parameter.'
ViewColumnSchema vcs = new ViewColumnSchema(
view ,
reader.GetString(POS_COLUMN_NAME),
GetDbType(reader),
reader.GetString(POS_DATA_TYPE),
GetDBTypeLength(reader),
reader.IsDBNull(POS_DATA_PRECISION) ? (byte)0 : Convert.ToByte( reader[POS_DATA_PRECISION]),
reader.IsDBNull(POS_DATA_SCALE ) ? 0 : Convert.ToInt32( reader[POS_DATA_SCALE] ),
properties);