Entity framework unit testing with sqlite
Posted
by Marcus Malmgren
on Stack Overflow
See other posts from Stack Overflow
or by Marcus Malmgren
Published on 2010-05-13T22:59:36Z
Indexed on
2010/05/13
23:04 UTC
Read the original article
Hit count: 287
Is it possible to unit test Entity Framework v2 repositories with SqLite? Is this only possible if my entities are plain Poco and not automatically generated by Entity Framework?
I've generated a entity model from SqlServer and in the generated .edmx file i found this in section SSDL content: Provider="System.Data.SqlClient". Correct me if I am wrong, but shouldnt that be System.Data.SQLite in order to work with sqlite?
© Stack Overflow or respective owner