btw, I use sqlserver. That’s support by MONO with System.Data.
VS2010:
i changed some source between the MONO Compiler switches to support transaction and configuration. After that I, compile the framework successful.
Monodevelop:
There are some compile-error. Most of them are problems with interface like In EntityCollectionBase2.cs:
if(this[i].Fields.IsDirty )
Error: System.Collections.IList' does not contain a definition for
IsDirty' and no extension method IsDirty' of type
System.Collections.IList' could be found (are you missing a using directive or an assembly reference?)
I fixed the error with casting to the right class. After that I, compile the framework successful.
The designer generated code compile successful.
I try this code:
DataAccessAdapter ad = new DataAccessAdapter("data source=Server;initial catalog=database;User ID=user;Password=pass;persist security info=False;packet size=8192");
CarEntity car = new CarEntity(new Guid("0c4c1b27-a8e1-425c-8c77-fe6ca462ea37"));
ad.FetchEntity(car);
Console.WriteLine (car.Name);
And I get this error: The entity is out of sync with its data in the database. Refetch this entity before using this in-memory instance.
The only advice I'm afraid we can give is to try it and see
thats ok for me