Thinktecture.EntityFrameworkCore
Thinktecture.EntityFrameworkCore copied to clipboard
These libraries extend Entity Framework Core by a few features to make it easier to work with EF and for easier integration testing or to get more performance in some special cases.
I want to add RowNumbers to `IOrderedQueryable`. The problem is, that constructing RowNumberOrderByClause dynamically is not a trivial task. I think following overload would be useful: ```csharp var query =...
With straight EF Core, calling `MyDbContext.MyEntities.AddRange(someEntities)` followed by `MyDbContext.SaveChanges()` results in `someEntities` having their `Id` column being populated with those generated by Sql Server; is there any way to accomplish...
finally I figured out how should be implemented
When trying to set the argument to exclude properties on BulkInsert, this exception gets thrown: Complex projections are not supported. Current expression: value(Program+c__DisplayClass0_0).propertiesToExclude at Thinktecture.BulkOperationsExpressionExtensions.ExtractMember(ParameterExpression paramExpression, MemberExpression memberAccess) at Thinktecture.BulkOperationsExpressionExtensions.ExtractMembers(List`1...
BulkInsertIntoTempTableAsync creates a temp table named #Temp{Entity}_1, but the query is referencing #Temp{Entity}
I'm getting the error: ``` System.InvalidOperationException: 'The LINQ expression 'x1 => new ViewEntryPlayerDto{ SteamId = x1.SteamPlayer.Id, SteamName = x1.SteamPlayer.Name } ' could not be translated. [...] ``` Here is what...
Hello, I have been using the BulkInsertOrUpdateAsync method on a project and for the most part it works great! I have come across one snag however where I have a...