The EntitySpaces Community

Share and learn about the EntitySpaces Architecture.
Welcome to The EntitySpaces Community Sign in | Join | Help
in
Home Forums Photos

Problem switching to VistaDB Build 30

Last post 07-07-2007, 1:16 PM by ElPipo. 2 replies.
Sort Posts: Previous Next
  •  07-07-2007, 12:54 PM 3687

    Tongue Tied [:S] Problem switching to VistaDB Build 30

    Hi,

    I replaced the MyMeta.Plugins.VistaDB3x.dll as explained in another post.

    Mike.Griffin:
    Unzip this over the MyMeta.Plugins.VistaDB3x.dll in your MyGeneration folder. Click HERE

    Then I regenerated my classes.

    Now I get some FileNotFoundException every time an Escollection loads. (Haven't checked it yet with entities but it should give the same result)

    Error Message:
    Could not load file or assembly 'VistaDB.NET20, Version=3.20.1.25, Culture=neutral, 
    PublicKeyToken=dfc935afe2125461' or one of its dependencies. The system cannot find the file specified.

     

    Stack trace:
       at EntitySpaces.VistaDBProvider.DataProvider.EntitySpaces.Interfaces.IDataProvider.esLoadDataTable(esDataRequest request)
    at EntitySpaces.Interfaces.esDataProvider.esLoadDataTable(esDataRequest request, esProviderSignature sig)
    at EntitySpaces.Interfaces.esDynamicQuery.Load()
    at some line of code where : EsCollection.Query.Load()

    Am I doing anything wrong here?

    Thank you very much in advance. 


    Thanks!

    - El pipo -
  •  07-07-2007, 1:06 PM 3688 in reply to 3687

    Re: Problem switching to VistaDB Build 30

    A new EntitySpaces release referencing VistaDB Build 30 is due in a few days. In the meantime, you can use the assembly redirection technique.

    http://community.entityspaces.net/forums/thread/1441.aspx

    Code:
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <dependentAssembly>
                <!-- Redirect VistaDB Connector -->
                <assemblyIdentity name="VistaDB.NET20"
                                  publicKeyToken="dfc935afe2125461"
                                  culture="neutral" />
                <bindingRedirect oldVersion="3.20.1.0-3.20.1.29"
                                 newVersion="3.20.1.30"/>
            </dependentAssembly>
        </assemblyBinding>
    </runtime>

    David Neal Parsons
    www.entityspaces.net
  •  07-07-2007, 1:16 PM 3689 in reply to 3688

    Re: Problem switching to VistaDB Build 30

    Yes Perfect. Thank you so much!

    Thanks!

    - El pipo -
View as RSS news feed in XML