0

devart linqconnect ORMに接続するように追加しましたmysql database。これは試用版ですがshopping.iqmllinq to mysql.

書くusing shoppingdatacontext;と動作し、インテリセンス メニューに表示されますが、linq datasourceツールバーから追加したり、データソースを構成してデータ コンテキストを選択しようとshoppingDataContextすると、ドロップ ダウン リストに表示されません。linqdatasource のコンテキスト メニュー タイプ プロパティ (データソースの構成ドロップダウンに表示されます) を手動で記述して構成しようとすると、エラーが発生します。

the Type 'ShoppingContext.ShoppingDataContext' could not be loaded. If the type is located in the App_code folder, please check that it compiles. If the type is located in a compiled assemblies, please check that the assembly is referenced by the project.

プロジェクトからアセンブリを追加しようとしましたが、まだ機能しておらず、他の方法を試しても無駄でした..私は機知に富んでいます..誰かこれについて私を助けてください

私の Web.config ファイルは次のとおりです。

<configuration>
<connectionStrings>
<remove name="LocalMySqlServer" />


<add name="LocalMySqlServer" connectionString="Server=localhost; Database=shopping; uid=root; pwd=007;"
  providerName="MySql.Data.MySqlClient" />
<add name="ShoppingDataContextConnectionString" connectionString="User Id=root;Password=007;Host=localhost;Database=shopping;Persist Security Info=True" />
</connectionStrings>

<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    <add assembly="Devart.Data.Linq.Web, Version=4.1.197.0, Culture=neutral, PublicKeyToken=09AF7300EEC23701"/>
    <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    <add assembly="Devart.Data.Linq, Version=4.1.197.0, Culture=neutral, PublicKeyToken=09AF7300EEC23701"/>
</assemblies>

  </compilation>
<authentication mode="Forms">
  <forms loginUrl="~/Account/Login.aspx" timeout="2880"/>
</authentication>
<membership defaultProvider="MySqlMembershipProvider">
  <providers>
    <clear/>
    <add name="MySQLMembershipProvider" type="MySql.Web.Security.MySQLMembershipProvider, MySql.Web, Version=6.5.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" connectionStringName="LocalMySqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requireQuestionAndAnswer="false" requireUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="0" passwordStrengthRegularExpression="" applicationName="/" autogenerateschema="true"/>
  </providers>
</membership>

あなたの助けに感謝..事前に感謝..

4

1 に答える 1

1

Devart LinqConnect モデルをプロジェクトに追加したら、すべての変更を有効にするためにアプリケーションをビルドする必要があります。ビルド後、LinqDataSource のデータソースを構成するときに、ドロップダウン リストで「shoppingdatacontext」を使用できるようになります。

于 2013-03-11T12:34:23.223 に答える