Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bring back SQLite (Resolves #1953) #2006

Merged
merged 1 commit into from
Apr 22, 2015
Merged

Bring back SQLite (Resolves #1953) #2006

merged 1 commit into from
Apr 22, 2015

Conversation

bricelam
Copy link
Contributor

@bricelam bricelam commented Apr 8, 2015

It's pretty crippled at the moment. Things like .Count() don't work because the provider returns a boxed long that we try to cast to an int. There also seems to be something wrong with the LIKE operator (possibly an encoding issue). Migrations isn't implemented (but .EnsureCreated() should more-or-less work). ...just to name a few.

@ghost ghost added the cla-not-required label Apr 8, 2015
Create();

return Task.FromResult(0);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we okay with a blocking default implementation of these async methods? /cc @divega

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems consistent with the default implementation of the async methods in relational, i.e. ADO.NET. I would add cancellationToken.ThrowIfCancellationRequested() on each of them though.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will throw when cancelled.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good.

@ajcvickers
Copy link
Contributor

:shipit:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants