ADO.NET Provider for SugarCRM

Build 23.0.8839

Changelog

General Changes

DateBuild
Number
Change
Type
Description
02/20/20248816SugarCRMChanged
  • Changes on the way we mark read-only fields:Some fields, that contain values that are system-generated are marked as read-only=true such as: "id", "date_entered", "date_modified", "modified_user_id", "modified_by_name", "created_by", "created_by_name".Fields that are required from the API are marked as readonly=false.Those fields with a complex type (different from: "bool", "char", "date", "datetime", "datetimecombo", "email", "enum", "id", "image", "link", "name", "phone", "team_list", "text", "url", "varchar", "tag") or the dbType as id are marked as readonly=true.
02/05/20248801SugarCRMAdded
  • Added the value of isRequired for each column as it is exposed by the API.

Changed
  • The default value for the APIVersion connection property is now V11_22.
  • The Relationship Views are now exposed as tebles. The user can now insert and delete a relation between two modules.

Removed
  • The Administration View is now removed.
  • Excluded columns like: "shipping_address_street_2", "shipping_address_street_3","shipping_address_street_4", "billing_address_street_2", "billing_address_street_3","billing_address_street_4". These columns are not used on the UI or elsewhere, as form the blogs this are left for backwards compatibility.
01/18/20248783ADO.NETAdded
  • Added support for EFCore 8.
11/29/20238733GeneralChanged
  • The ROUND function doesn't accept the negative precision values anymore.

Changed
  • The returning types of the FDMonth, FDQuarter, FDWeek, LDMonth, LDQuarter, LDWeek functions are changed from Timestamp to Date.
  • The return type of the ABS function will be consistent with the parameter value type.
11/15/20238719ADO.NETChanged
  • NuGet license and icon are now embedded within the package itself, in compliance with the package authoring best practices.
07/26/20238607SugarCRMAdded
  • Added support for querying Saved Search(filters) data. You can control this behavior with the IncludeFiltersAsViews connection property. It defaults to true by default. The filters are prefixed with "Filter_" followed by the name of the Module and the name of the filter. An example of a query: SELECT * FROM [Filter_Cases_Open Cases]. In this case, "Cases" is the name of the module where the filter is applied, and "Open Cases" is the name of the filter.
  • Each filter is applied on a specific module. Since we may have many modules and many more filters we decided to let the user control the list of modules for which they would like to see the filters by setting the ModulesFiltersList connection property.
  • Our driver has had support for displaying the Reports as views. In some cases, the list of the reports may be too large and we don’t need all of them listed. Considering that a report is created based on a module we have added a functionality to let the user control the list of modules that the reports are created upon just by setting the ReportModulesList connection property.

Changed
  • SugarCRM uses the Many-to-Many relationships between modules but does not expose the middle tables. The way how we handle relationships has changed. Previously we had an extra column for each relationship added on each table with the name of the relationship. We have worked on figuring out a solution and now we have support for exposing the middle tables as views with data from both sides of the relationships. Furthermore, the user itself now has the ability to write join queries between many-to-many relationship tables just by using the "RelatedId" and "RelationType" in the join query.
06/20/20238571GeneralAdded
  • Added the new sys_lastresultinfo system table.
04/25/20238515GeneralRemoved
  • Removed support for the SELECT INTO CSV statement. The core code doesn't support it anymore.
04/19/20238509ADO.NETRemoved
  • Removed support for EFCore 3.1.
04/18/20238508ADO.NETRemoved
  • Removed support for SSRS 2012.

Added
  • Added support for SSRS 2022.
12/14/20228383GeneralChanged
  • Added the Default column to the sys_procedureparameters table.
12/09/20228378SugarCRMRemoved
  • Removed the OutputFolder parameter for the CreateReportSchema stored procedure.

Added
  • Added the WriteToFile parameter for the CreateReportSchema stored procedure. It defaults to true and specifies whether to write the contents of the generated schema to a file or not. Set it to false to push the contents to the FileData output.
09/30/20228308GeneralChanged
  • Added the IsPath column to the sys_procedureparameters table.
09/02/20228280SugarCRMAdded
  • Added streaming output support for DownloadFile. Added FileStream as an input.
  • Added binary and encoded content output support for CreateSchema. Added FileStream as an input, and FileData as an output.
08/18/20228265SugarCRMAdded
  • Added encoded content output support for DownloadFile. Added FileName (file's original name) and FileData as outputs.

Changed
  • DownloadFile will take into consideration the APIVersion property when building the download URL.
06/08/20228194ADO.NETRemoved
  • Removed support for VS2010.
05/19/20228174ADO.NETRemoved
  • Removed support for .NET 2.0.
04/27/20228152ADO.NETRemoved
  • Removed support for EFCore 3.0 and EFCore5.0.
02/15/20228081SugarCRMAdded
  • Added support for retrieving deleted records. This can be controlled by the IncludeDeleted connection property which defaults to false. Set it to true in order to retrieve deleted records in the result set.
01/05/20228040SugarCRMAdded
  • Added support for querying report data. You can control this behavior with the IncludeReports connection property. It defaults to false by default. You can also set a Pagesize and a RowScanDepth to control how the driver queries the report metadata. The reports are prefixed with "Report_". An example of a query: SELECT * FROM [Report_Revenues per industry (2021)]. In this case, "Revenues per industry (2021)" is the name of the report.
09/02/20217915GeneralAdded
  • Added support for the STRING_SPLIT table-valued function in the CROSS APPLY clause.
08/07/20217889GeneralChanged
  • Added the KeySeq column to the sys_foreignkeys table.
08/06/20217888GeneralChanged
  • Added the new sys_primarykeys system table.
07/23/20217874GeneralChanged
  • Updated the Literal Function Names for relative date/datetime functions. Previously, relative date/datetime functions resolved to a different value when used in the projection as opposed to the predicate. For example: SELECT LAST_MONTH() AS lm, Col FROM Table WHERE Col > LAST_MONTH(). Formerly, the two LAST_MONTH() methods would resolve to different datetimes. Now, they will match.
  • As a replacement for the previous behavior, the relative date/datetime functions in the criteria may have an 'L' appended to them. For example: WHERE col > L_LAST_MONTH(). This will continue to resolve to the same values that were previously calculated in the criteria. Note that the "L_" prefix will only work in the predicate - it not available for the projection.
06/25/20217846SugarCRMAdded
  • Added the connection property AggregateColumnMode which can have the values Ignore, List, and ListAndRetrieve. The default is AggregateColumnMode=ListAndRetrieve where the driver requests all the available columns from SugarCRM. With AggregateColumnMode=Ignore, the driver requests all the columns except aggregates, for performance reasons. If you want the performance of Ignore but want to insert or update an aggregate, use AggregateColumnMode=List.
06/07/20217828ADO.NETAdded
  • Added support for the DbCommand.CommandTimeout property.
05/29/20217819ADO.NETRemoved
  • Removed support for SSRS 2008.
04/25/20217785GeneralAdded
  • Added support for handling client side formulas during insert / update. For example: UPDATE Table SET Col1 = CONCAT(Col1, " - ", Col2) WHERE Col2 LIKE 'A%'
04/23/20217783GeneralChanged
  • Updated how display sizes are determined for varchar primary key and foreign key columns so they will match the reported length of the column.
04/16/20217776ADO.NETChanged
  • Separated the ADO.NET Provider assembly and Entity Framework Core 5 Nuget packages.
  • Single precision floating point numbers are now reported as with the Data Type Name as "real". Double precision floating point numbers now have their Data Type Name reported as "float". This change does not impact the actual data types of these columns - only the reported data type name.
  • Separate EFCore 3.0, 3.1 and EFCore 5 dlls are now shipped with the driver. The 2.0 and 2.1 EFCore dlls are removed.
04/16/20217776GeneralAdded
  • Non-conditional updates between two columns is now available to all drivers. For example: UPDATE Table SET Col1=Col2
04/16/20217776GeneralChanged
  • Reduced the length to 255 for varchar primary key and foreign key columns.

Changed
  • Updated index naming convention to avoid duplicates.
04/16/20217776GeneralChanged
  • Updated implicit and metadata caching to improve performance and support for multiple connections. Old metadata caches are not compatible - you need to generate new metadata caches if you are currently using CacheMetadata.
09/15/20207563SugarCRMAdded
  • Added support for foreign key relationships via the IncludeRelationships connection property.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839