Posts

Using Retrofit 2.x as REST client - Tutorial

Table of Contents 1. Retrofit 2. Retrofit converters and adapters 3. Retrofit authentication 4. Exercise: Using Retrofit to query Gerrit in Java 5. Exercise: Using Retrofit to convert XML response from an RSS feed 6. Exercise: Build a basic application for querying StackOverflow 7. Exercise: Using Retrofit to query StackOverflow 8. Exercise: Using Retrofit to query StackOverflow 9. Exercise: Using Retrofit to access Github API in Android 10. Exercise: Using Retrofit with OAuth to request user details from Twitter in Android 11. About this website 12. Retrofit resources

SearchBar-in-TableView-Demo

Hello there! This is Sheldon again and welcome back to iOS eTutorials. Today I will talk about the use of the SearchBar in TableView. The SearchBar will be hard coded in the TableViewHeader. When we change text in the SearchBar, the array of my predefined model objects will be filtered, so that when the TableView is reloaded the filtered data will be reflected into TableView as Well. The tutorial video on Youtube is available in the link:  https://www.youtube.com/watch?v=TMo7PuggHlc For more info from me, please feel free to visit my blog site:  http://iosetutorials.com https://github.com/SheldonWangRJT/iOS-SearchBar-in-TableView-Demo

drop down menu swift 3 using Button and TableView (SWIFT 3) UPDATED!!!

Image

How to Pass Data from View Controller (Swift : Xcode)

Image

sql entity

http://www.entityframeworktutorial.net/entityframework6/transaction-in-entity-framework.aspx

LINQ Tutorials

Join GroupJoin Select All, Any Contains Aggregate Average Count Max Sum ElementAt, ElementAtOrDefault First, FirstOrDefault Last, LastOrDefault Single, SingleOrDefault SequenceEqual Concat DefaultIfEmpty Empty, Range, Repeat Distinct Except Intersect Union Skip, SkipWhile Take, TakeWhile Conversion Operators Expression Expression Tree Deferred Execution Immediate Execution let Keyword into Keyword Sample Queries Useful Resources Next  » «  Previous

SQL Joins with C# LINQ

http://www.dotnettricks.com/learn/linq/sql-joins-with-csharp-linq There are  Different Types of SQL Joins  which are used to query data from more than one tables. In this article, I would like to share how joins work in LINQ. LINQ has a JOIN query operator that provide SQL JOIN like behavior and syntax. Let's see how JOIN query operator works for joins. This article will explore the SQL Joins with C# LINQ. INNER JOIN LEFT OUTER JOIN CROSS JOIN GROUP JOIN The JOIN query operator compares the specified properties/keys of two collections for equality by using the EQUALS keyword. By default, all joins queries written by the JOIN keyword are treated as equijoins. LINQ PAD for running and debugging LINQ Query I am a big fan of LINQ Pad since it allow us to run LINQ to SQL and LINQ to Entity Framework query and gives the query output. Whenever, I need to write LINQ to SQL and LINQ to Entity Framework query then, I prefer to write and run query ...