我正在尝试使用LinqPAD枚举我的oracle数据库中的可用表。我正在使用IQ驱动程序以直接模式连接。
在this.Mapping.GetTables().Select(m => m.TableName)
连接上,我可以执行
Mappings
获取所有表名的列表,但IQ驱动程序的上下文没有@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomJsonProperty {
String propertyName();
String format();
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@interface List {
CustomJsonProperty[] value();
}
}
属性。
还有其他办法吗?