assembly version problem

Hi,

I try to use DevExpress XPO (express persistent objects) with Visual Studio 2005.
It needs FirebirdSql.Data.Firebird, Version=1.7.0.1 (Firebird provider for .NET), but I have Version=1.7.1 (the newest downoadable).
I cant obtain Version=1.7.0.1.
The error message is:

Could not load file or assembly 'FirebirdSql.Data.Firebird, Version=1.7.0.1, Culture=neutral, PublicKeyToken=fa843d180294369d' or one of its dependencies.

The code is:
Imports DevExpress.Xpo
Imports DevExpress.Xpo.DB

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim conStr As String = FirebirdConnectionProvider.GetConnectionString("", "SYSDBA", "masterkey", "C:\DB.GDB", FirebirdServerType.Server)

Dim xpoSession As New Session
Dim dataLayer As IDataLayer = XpoDefault.GetDataLayer(conStr, AutoCreateOption.None) // ERROR!!!
/...
End Sub


I am very new in .NET,
plz,help




Answer this question

assembly version problem

  • AC [MVP MOSS]

    You can use a bindingRedirect element in your application config file to redirect the old version to the new.



  • assembly version problem