ispriceoverriden attribute not available on invoice/opportunity products

Cannot set this attribute

Id #11943 | Release: None | Updated: Feb 14 at 12:33 AM by tommc | Created: Sep 16, 2010 at 10:13 AM by tommc

Multiple left joins with same entity fails

Hi there,   I have a query which has 2 left joins to the same entity but on an other attribute, like this:   from p in _crmQueryProvider.Linq<esc_pand>() join g in _crmQueryProvider.Linq<new_geme...

Id #10680 | Release: None | Updated: Feb 14 at 12:33 AM by melg | Created: Apr 21, 2010 at 2:25 PM by aXiniXe

The method 'Equals' is not supported

Exception: "The method 'Equals' is not supported" at QueryFormatter.VisitMethodCall(MethodCallExpression m, FetchFilters& filters) Repro: from obj in mCrmCore.LinqProvider.Linq<t> where obj.statu...

Id #10402 | Release: None | Updated: Feb 14 at 12:33 AM by 12055 | Created: Mar 11, 2010 at 6:59 PM by 12055

Count gives incorrect results in some cases

This Fails: provider.Linq<contact>().Count()   This works: provider.Linq<contact>().Select(c => c.contactid).Count()

Id #10108 | Release: None | Updated: Feb 14 at 12:33 AM by melg | Created: Jan 29, 2010 at 1:29 PM by melg

Order of Operations Incorrect

The following two queries should be identical, but are providing different results. The first result is correct:   var accounts = (from a in p.Linq<account>() where a.address1_line1!= null &&(a.new...

Id #9128 | Release: None | Updated: Feb 14 at 12:33 AM by SrsDan | Created: Nov 5, 2009 at 4:15 PM by SrsDan

CrmFloat not supported in CreateValueProperty

CrmFloat which has a value type of Double is not supported in CreateValueProperty and throws a NotSupportedException. Adding the following line of code fixes the problem:   case "Double": return D...

Id #9076 | Release: None | Updated: Feb 14 at 12:33 AM by SrsDan | Created: Oct 29, 2009 at 7:16 PM by SrsDan

Take(10) returns 11 with top entry containing NULL values

When we execute the query: var accounts = (from a in p.Linq<account>() where a.new_geocodestatus.Value == null select a).Take(10);   We get 11 rows. The first and second rows contain the same Guid ...

Id #9067 | Release: None | Updated: Feb 14 at 12:33 AM by SrsDan | Created: Oct 28, 2009 at 4:32 PM by SrsDan

No value nodes found for Type account

at LinqtoCRM.CrmQueryProvider.ConstructCrmObject(Type t) in C:\env\working\LinqtoCRM\LinqtoCRM\CrmQueryProvider.cs:line 113 at LinqtoCRM.CrmQueryProvider.GetCurrentCrmObject(Type t) in C:\env\wo...

Id #9066 | Release: None | Updated: Feb 14 at 12:33 AM by friism | Created: Oct 28, 2009 at 4:22 PM by SrsDan

Queries without where or select are truncated

Problem: Queries without a where select clause are sometimes truncated.   Example: var firstTenContacts = provider.Linq<contact>().Skip(10).Take(10); wrongly generates the following fetchXML <fet...

Id #8500 | Release: None | Updated: Feb 14 at 12:33 AM by SrsDan | Created: Aug 14, 2009 at 3:01 PM by melg

Query generating wrong fetch XML

I have found an error in the Linq To CRM project. I would like to do a query on date, and a have an order date that has to be between to values. Having an open end generates the correct xml but ad...

Id #7999 | Release: None | Updated: Feb 14 at 12:33 AM by IDontHaveAName | Created: Jul 8, 2009 at 8:18 AM by IDontHaveAName