小编Kro*_*oaX的帖子

从Visual Studio项目中的项目中删除所有未使用的引用

我只是想知道在各种Visual Studio版本中是否可以自动删除从未使用过的项目的所有引用?

在您的回答中,请指定解决方案适用的VS版本.

visual-studio

243
推荐指数
12
解决办法
20万
查看次数

Visual Studio 2012 - Intellisense有时会消失/破碎

我和我的同事现在正在使用VS2012几周.有时在工作几个小时后,智能感知被打破了.关闭所有打开的标签后,它再次起作用.

Are there more people out there having the same problem? It can't be an extension problem because I have the same problem at home. Maybe there is a workaround for this?

intellisense visual-studio visual-studio-2012

133
推荐指数
6
解决办法
9万
查看次数

未定义的complexType'http://schmeas.xmlsoap.org/soap/encoding/:Array'用作复杂类型限制的基础

我正在尝试从我的.NET应用程序的AXIS服务获取数据.到目前为止,我能够收集像int,string ......这样的简单数据.但是当我尝试获取像long []这样的数组数据时,数组只包含正确的数据计数,但只包含零值而不是我想要的ID.

我的WSDL看起来像这样:

        <wsdl:definitions xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:intf="urn:api.broadmail.de/soap11/RpcRecipientList" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns2="http://lang.java" xmlns:impl="urn:api.broadmail.de/soap11/RpcRecipientList" targetNamespace="urn:api.broadmail.de/soap11/RpcRecipientList" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
      <wsdl:types>
        <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:api.broadmail.de/soap11/RpcRecipientList">
          <xsd:import namespace="http://lang.java" />
          <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
          <xsd:complexType name="WebserviceException">
            <xsd:sequence>
              <xsd:element name="cause" nillable="true" type="xsd:anyType" />
              <xsd:element name="message" nillable="true" type="xsd:string" />
            </xsd:sequence>
          </xsd:complexType>
          <xsd:complexType name="ArrayOf_xsd_string">
            <xsd:complexContent mixed="false">
              <xsd:restriction base="soapenc:Array">
                <xsd:attribute wsdl:arrayType="xsd:string[]" ref="soapenc:arrayType" />
              </xsd:restriction>
            </xsd:complexContent>
          </xsd:complexType>
          <xsd:complexType name="ArrayOf_xsd_long">
            <xsd:complexContent mixed="false">
              <xsd:restriction base="soapenc:Array">
                <xsd:attribute wsdl:arrayType="xsd:long[]" ref="soapenc:arrayType" />
              </xsd:restriction>
            </xsd:complexContent>
          </xsd:complexType>
          <xsd:complexType name="ArrayOfArrayOf_xsd_string">
            <xsd:complexContent mixed="false">
              <xsd:restriction base="soapenc:Array">
                <xsd:attribute wsdl:arrayType="xsd:string[][]" ref="soapenc:arrayType" />
              </xsd:restriction>
            </xsd:complexContent>
          </xsd:complexType>
        </xsd:schema>
      </wsdl:types> …
Run Code Online (Sandbox Code Playgroud)

.net axis xsd soap wsdl

5
推荐指数
1
解决办法
7939
查看次数

嵌套事务范围,必需 -&gt; 抑制 -&gt; 必需

内部 TransactionScope 将哪个事务作为环境事务?

using ( var t1 = new TransactionScope( TransactionScopeOption.Required ) )
{
    //MyStuff

    using ( var t2 = new TransactionScope( TransactionScopeOption.Suppress) )
    {
        //MyStuff

        using ( var t3 = new TransactionScope( TransactionScopeOption.Required) )
        {
            //Mystuff

            t3.Complete();
        }

        t2.Complete();
    }

    t1.Complete();
}
Run Code Online (Sandbox Code Playgroud)

.net c# sql-server transactions transactionscope

4
推荐指数
1
解决办法
5330
查看次数

LINQ - 通过WHERE子句查询大约6000条唯一记录

我有一个问题,不知道如何解决它.想象一下,你有一个List<int>大约6000个唯一id,它匹配一个表的id,在sql数据表中有大约一百万条记录.我想从我的c#程序中选择那些通过LINQ匹配那些id的记录.我不想使用,Contains()因为它的翻译速度很慢而且参数列表变得很大.

任何其他想法如何解决这个问题?


关于我的场景的一些事情(这不是真实的,而是类似的场景):

我有一个连接到数据库的服务.例如,客户端请求一批项目,例如Person.服务接受请求,查询数据库并将数据发送回客户端.

Person =(PersonID,Prename,Lastname)

现在客户持有临时人员名单.使用其他方法,我想从服务中检索这些人的地址.所以我将一个PersonID列表添加到服务中,该列表应该返回一个引用这些人的地址列表.

.net c# sql linq

3
推荐指数
1
解决办法
1618
查看次数