We are using MSSql server 2005 and we have a column in database table with xml data type. We want to read this xml column data using CSLA .Net framework's SafeDataReader. But there is not any method to get xml data from reader like GetString(), GetInt32()..
In this xml column we do have xml data just like this
<Lang>
<DE>
<Description> Some German text </Description>
</DE>
<EN>
<Description> Some English text </Description>
</EN>
......
.....
</Lang>
Does CSLA.Net provides method to retrive xml data? or Can we use GetString() or GetBytes() of SafeDataReader? If there is any another way to solve above problem then please suggest.
Copyright (c) Marimer LLC