从其他地方我收到一个XmlSchemaSet
对象,是否可以使用它构建一个使用它的DataSet
?
一些背景
使用自定义XmlSchemaSet
读取此XmlResolver
,并且原始架构文件具有xs:include
元素,这些元素链接到要由自定义解析程序解析的其他文件。我确认DataSet.ReadXmlSchema
即使我使用自定义XmlReader
发送XmlReaderSettings
,也无法正确阅读这些文件。我认为这是因为XmlReader
只解析了DTD所需的uris,而xs:include
引用则没有。
可能的解决方案
当我深入研究DataSet.ReadXmlSchema
的实现时,它似乎调用了XSDSchema.LoadSchema(schemaSet,dataSet)
方法来完成这项工作。这就是我要的。但遗憾的是XSDSchema
internal
是{{1}},除非我以某种方式破解它,否则无法访问。
那么还有其他解决方案可以解决这个问题吗?
答案 0 :(得分:2)
以下方法适合我。它获取xmlSchemaSet的字符串表示,然后使用StringReader读取它,这是readXmlSchema方法可接受的。
public static class Utilities
{
public static DataSet ToDataSet(this XmlSchemaSet xmlSchemaSet)
{
var schemaDataSet = new DataSet();
string xsdSchema = xmlSchemaSet.GetString();
schemaDataSet.ReadXmlSchema(new StringReader(xsdSchema));
return schemaDataSet;
}
private static string GetString(this XmlSchemaSet xmlSchemaSet)
{
var settings = new XmlWriterSettings
{
Encoding = new UTF8Encoding(false, false),
Indent = true,
OmitXmlDeclaration = false
};
string output;
using (var textWriter = new StringWriterWithEncoding(Encoding.UTF8))
{
using (XmlWriter xmlWriter = XmlWriter.Create(textWriter, settings))
{
foreach (XmlSchema s in xmlSchemaSet.Schemas())
{
s.Write(xmlWriter);
}
}
output = textWriter.ToString();
}
return output;
}
}
public sealed class StringWriterWithEncoding : StringWriter
{
private readonly Encoding _encoding;
public StringWriterWithEncoding(Encoding encoding)
{
_encoding = encoding;
}
public override Encoding Encoding
{
get
{
return _encoding;
}
}
}
答案 1 :(得分:0)
这是我的"黑客攻击"似乎有效的解决方案:
private static Action<XmlSchemaSet, DataSet> GetLoadSchemaMethod()
{
var type = (from aN in Assembly.GetExecutingAssembly().GetReferencedAssemblies()
where aN.FullName.StartsWith("System.Data")
let t = Assembly.Load(aN).GetType("System.Data.XSDSchema")
where t != null
select t).FirstOrDefault();
var pschema = Expression.Parameter(typeof (XmlSchemaSet));
var pdataset = Expression.Parameter(typeof (DataSet));
var exp = Expression.Lambda<Action<XmlSchemaSet, DataSet>>(Expression.Call
(Expression.New(type.GetConstructor(new Type[] {}), new Expression[] {}),
type.GetMethod("LoadSchema", new[]
{
typeof (XmlSchemaSet), typeof (DataSet)
}), new Expression[]
{
pschema, pdataset
}), new[] {pschema, pdataset});
return exp.Compile();
}
但我还是不想做黑客攻击。