-
Notifications
You must be signed in to change notification settings - Fork 23
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
Am I misunderstanding the usage? #22
Comments
You'll have to enable e.g. in case of DI: services.AddDbContext<ApplicationDbContext>(options => {
options
.UseSqlite(dbConnection)
.UseProjectables() // Add this line
}) |
thanks,The reason for the difference is ? |
EF Core does not support string interpolation (String.Format), this library does not change that fact, see: dotnet/efcore#6532 (comment) |
The text was updated successfully, but these errors were encountered: