vote up 0 vote down star

Can someone confirm one way or the other if SubSonic 3.0's SimpleRepository supports SQL Server CE (Compact Edition)? I tried it and failed but I'm not sure if I'm doing something wrong or if it's not supposed to work.

I'm finding conflicting information online. The SubSonic documentation page says that SQL Server CE is supported in SubSonic 3.0. However this (fairly recent) Stack Overflow question says that it isn't supported

So which is it? If it is supposed to work, does anyone happen to have a pointer to some working code so I can figure out what I'm doing wrong? Thanks!

flag

56% accept rate

1 Answer

vote up 1 vote down

We use System.Data.Common and from what I understand SQLCE understands System.Data.Common - you just have to be sure you specify that driver in your connection string (and I don't know what that is).

We don't have any T4's built for it yet, but for SimpleQuery it should "just work". What's the error?

link|flag
I had to do some experimenting, but I think I got right connection string information: connectionString="Data Source=test.sdf; Persist Security Info=False;" providerName="System.Data.SqlServerCe.3.5" The exception I'm getting is a System.NotSupportedException ("Specified method is not supported.") in ANSISchemaGenerator.cs in GetTableFromDb() and it's the line that calls scope.Connection.GetSchema(). Some googling shows me that other people have had issues with GetSchema and SqlServerCe, but I don't know enough about it to be sure what the deal is. – Scott Bussinger Sep 19 at 16:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.