Hello All,
We have an existing SAP ASE database that I am attempting to connect to using C# .NET, Entity Framework Model First methodology and I am having some trouble.
The first issue I had was after installing the SDK I faced an issue that the sybase ASE connector did not appear in the list of data sources when creating an ADO.NET entity model.
I resolved this issue by installing the SQL anywhere trial which then installed the connector (this really should be fixed).
Now I can appropriately create an entity model from the existing database.
Now my issue is I am receiving the following error when doing a simple Context.[TableName].ToList():
No Entity Framework provider found for the ADO.NET provider with invariant name 'Sybase.Data.AseClient'. Make sure the provider is registered in the 'entityFramework'
Is there an entityFramework provider for Sybase ASE? and if so what are the specifications supposed to be in the provider tag in the app.config?
Thank you for your help,
Dan