1 write to SqlXmlType
System.Data.Entity (1)
System\Data\SqlClient\SqlTypesAssembly.cs (1)
180
this.
SqlXmlType
= this.SqlCharsType.Assembly.GetType("System.Data.SqlTypes.SqlXml", throwOnError: true);
4 references to SqlXmlType
System.Data.Entity (4)
System\Data\SqlClient\SqlSpatialServices.Generated.cs (2)
1173
this.smi_SqlGeography_GeomFromGml = new Singleton<MethodInfo>(() => { MethodInfo result = FindSqlGeographyStaticMethod("GeomFromGml", SqlTypes.
SqlXmlType
, typeof(int)); Debug.Assert(result != null, "Could not retrieve MethodInfo for SqlGeography member GeomFromGml"); return result; });
1220
this.smi_SqlGeometry_GeomFromGml = new Singleton<MethodInfo>(() => { MethodInfo result = FindSqlGeometryStaticMethod("GeomFromGml", SqlTypes.
SqlXmlType
, typeof(int)); Debug.Assert(result != null, "Could not retrieve MethodInfo for SqlGeometry member GeomFromGml"); return result; });
System\Data\SqlClient\SqlTypesAssembly.cs (2)
186
this.sqlXmlFromXmlReader = Expressions.Lambda<System.Xml.XmlReader, object>("readerVaue", readerVal => BuildConvertToSqlXml(readerVal, this.
SqlXmlType
)).Compile();
227
this.sqlXmlToString = Expressions.Lambda<object, string>("sqlXmlValue", sqlXmlVal => sqlXmlVal.ConvertTo(this.
SqlXmlType
).Property<string>("Value")).Compile();