Posts by tcfialho • 311 points
4 posts
- 
		6 votes1 answer1426 viewsA: What is the Richardson Maturity Model?What is this model? It is a model created by Leonard Richardson that breaks the elements of a REST API on 3 levels. So for you to achieve the "real" REST you would have to reach level 3. It is… 
- 
		2 votes1 answer253 viewsA: How to convert lambda to Expression Trees format?Solved with the help of Microsoft Mads. class Program { static void Main(string[] args) { //var Ids = profileExample.CostCenters.Where(CostCentre => CostCentre != null).Select(CostCentre =>… 
- 
		2 votes1 answer8490 viewsA: Oracle Relationship Search QueryTry using the PARALLEL hint and tell me if the query runs fast: http://docs.oracle.com/cd/B10500_01/server.920/a96524/c20paral.htm SELECT /*+ PARALLEL(all_cons_columns 2) PARALLEL(all_constraints 2)… 
- 
		3 votes1 answer253 viewsQ: How to convert lambda to Expression Trees format?How to convert that lambda: Set.Asqueryable(). Where(profile => profile.CostCenters.Select(Costcentre => Costcentre.Id). Any(Id => Ids.Contains(Id))).Tolist() Actually I managed to do even…