Exemplo n.º 1
0
        private bool isBinary(int ordinal)
        {
            string typeName = _tableRows.GetFieldTypeName(ordinal);

            return(string.Equals(typeName, "Microsoft.SqlServer.Types.SqlGeography", StringComparison.Ordinal) ||
                   string.Equals(typeName, "Microsoft.SqlServer.Types.SqlGeometry", StringComparison.Ordinal));
        }
Exemplo n.º 2
0
        private bool isBinary(int ordinal)
        {
            string typeName = _tableRows.GetFieldTypeName(ordinal);

            return(typeName == "Microsoft.SqlServer.Types.SqlGeography" ||
                   typeName == "Microsoft.SqlServer.Types.SqlGeometry");
        }