Fixed
Details
Assignee
Ricardo StuvenRicardo StuvenReporter
Aleš RoubíčekAleš RoubíčekComponents
Fix versions
Affects versions
Priority
MajorWho's Looking?
Open Who's Looking?
Details
Details
Assignee
Ricardo Stuven
Ricardo StuvenReporter
Aleš Roubíček
Aleš RoubíčekComponents
Fix versions
Affects versions
Priority
Who's Looking?
Open Who's Looking?
Created November 26, 2008 at 6:59 AM
Updated March 8, 2009 at 9:45 PM
Resolved March 8, 2009 at 9:45 PM
SqlGeometryType is based on Byte, but it is a binary. It sometimes breaks update queries. Pls correct constructor to this:
public SqlGeometryType()
// Pass any SqlType to base class.
: base(SqlTypeFactory.GetBinary(-1))
{
}
Also decorate custom type with SerializableAttribute.
Thanx