Login / Register  search  syndication  about

          Kris Halsrud's Blog

Kris Halsrud on development and Integration with CRM and Development

Returning a distinct result set using IRepository in SalesLogix

Using IRepository in the SalesLogix web client can allow querying the SalesLogix entity model directly, similar to how you used to query the database directly using T-SQL queries.  Ryan has already created a great post here about this, and I expanded on that here.  Today I want to talk about one more functionality of the IRepository, that is how to use Projection to return a distinct list of records from your query.

Lets take a look at how to return a distinct list of Families in the Product table;  The first step is to build your normal query using IRepository:

Sage.Platform.RepositoryHelper<Sage.Entity.Interfaces.IProduct>  repository = Sage.Platform.EntityFactory.GetRepositoryHelper<Sage.Entity.Interfaces.IProduct>();
Sage.Platform.Repository.ICriteria criteria = repository.CreateCriteria();
criteria.Add(repository.EF.IsNotNull("Family"));
criteria.AddOrder(repository.EF.Asc("Family"));

 This established what records you will be returning.  In my case I just added a restriction to only return products with a Family, and then I ordered the result by Family in Ascending order.  Now that we have our query we can then add Projection to it:

criteria.SetProjection(repository.PF.Distinct(repository.PF.Property("Family")));

 Finally we return our distinct list:

System.Collections.IList products = criteria.List();

 With that returned we can then do something with it like bind it to a combo box:

cboFamily.DataSource = products;
cboFamily.DataBind();

Lets look at it all together:

System.Collections.Generic.IList<Sage.SalesLogix.PickLists.PickList>  picklists = Sage.SalesLogix.PickLists.PickList.GetPickListItemsByName("Product Family", true);
Sage.Platform.RepositoryHelper<Sage.Entity.Interfaces.IProduct> repository = Sage.Platform.EntityFactory.GetRepositoryHelper<Sage.Entity.Interfaces.IProduct>();

Sage.Platform.Repository.ICriteria criteria = repository.CreateCriteria();
criteria.Add(repository.EF.IsNotNull("Family"));
criteria.AddOrder(repository.EF.Asc("Family"));

criteria.SetProjection(repository.PF.Distinct(repository.PF.Property("Family")));

System.Collections.IList products = criteria.List();

cboFamily.DataSource = products;
cboFamily.DataBind();

One last thing to note.  If you want to return a distinct result on more than one field you can change this:

criteria.SetProjection(repository.PF.Distinct(repository.PF.Property("Family")));

To this:

criteria.SetProjection(repository.PF.Distinct(repository.PF.ProjectionList()
.Add(repository.PF.Property("Family"))
.Add(repository.PF.Property("Product"))));
What's This?
  
Bookmark and Share

About Kris Halsrud

   Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.


Related Content
   Upgrading SalesLogix vs Migration to SalesLogix version 8.0
We want to get off the desktop versions and into the Cloud. I have been working with Sage and our BP alr
Posted on Jun 19, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Unicode data from SalesLogix not exporting from the web Crystal Report viewer to PDF correctly.
The later version of SalesLogix allow the storage of Unicode data in the database.  This allows for
Posted on Jun 07, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Problems managing team membership in the SalesLogix web client
In the Web Client's Administration area under teams (In both v7.5x and 8.0x versions):1) When addin
Posted on Jun 03, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Demystifying SalesLogix Web: Dashboards and Analytics Tools
Join us for a free webinar, Wednesday, May 15th at 2pm CDT. The SalesLogix Web dashboards and analytics
Posted on May 08, 2013 by Brianna Tinjum to The Inbox
 
   How can I make sure I am logging into the correct SalesLogix web client database?
I just recently did a updated conversion of our production database (which is 6.2x) and I'm trying to
Posted on Apr 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

 

Twitter Trackbacks for SalesLogix Returning a distinct result set using IRepository in SalesLogix: Using IRepository in the SalesLogix we... [customerfx.com] on Topsy.com said:

Pingback from  Twitter Trackbacks for                 SalesLogix Returning a distinct result set using IRepository in SalesLogix: Using IRepository in the SalesLogix we...         [customerfx.com]        on Topsy.com

April 28, 2010 2:27 PM

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register