EntityFramework.Extended icon indicating copy to clipboard operation
EntityFramework.Extended copied to clipboard

Added support for BulkInsert and InsertFrom

Open seguemark opened this issue 12 years ago • 0 comments

This update includes support for:

  • BulkInsert of an IEnumerable<TEntity> into a single table
  • InsertFrom to insert records into one table based on a select statement (SQL Server 'insert from' syntax)
  • To support BulkInsert / InsertFrom, added support for multiple mapping fragments and constant property values
  • Improved schema name detection
  • Updated Microsoft's DynamicQuery code to include additional operations, including "IsType" (OfType), and "In", as well as a generic version of Select and additional options for OrderBy / OrderByDescending

seguemark avatar Feb 13 '13 15:02 seguemark