TDS Error on Azure Entity Framework SQL Calls after Windows 10 April 2018 Update [duplicate]
- 阅读更多 关于 TDS Error on Azure Entity Framework SQL Calls after Windows 10 April 2018 Update [duplicate]
This question already has answers here : SqlClient error after updating Windows - “The incoming tabular data stream (TDS) remote procedure call > (RPC) protocol stream is incorrect” (5 answers) Closed last year . I have the following C# code that executes against a SQL Server hosted in Azure. protected IQueryable<T> FilterUpdatedRows<T>(IQueryable<T> query, DateTime lastSyncTimestamp) where T: class, ITimestamp { return query.Where(x => x.InsertTimestamp >= lastSyncTimestamp || (x.UpdateTimestamp.HasValue && x.UpdateTimestamp >= lastSyncTimestamp)); } The Generic (T) are Entity Framework