Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Linq to SQL issue

Author  Topic 

my.msi.net
Starting Member

3 Posts

Posted - 2012-09-10 : 10:23:09
I'm getting an 'interesting' issue with this code:

public static bool Lookup( string memberName, IDataProvider db )
{
var id = from c in db.Identity where c.MemberName == memberName select new { c };
return ( id.First() != null );
}

The ecepting being returnde is:

The provider did not return a ProviderManifestToken string.


My question is:

What is a ProviderManifestToken string and how would I go about generating one?


Background: The is running against SQL Server 2008 R2



- Eric
www.my-msi.net

chadmat
The Chadinator

1974 Posts

Posted - 2012-09-11 : 13:05:45
Is your connection string correct? Is your SQL Service running?

-Chad
Go to Top of Page
   

- Advertisement -