Background -
You are developing an ASP.NET MVC application in Visual Studio that will be used to process orders.
Business Requirements -
The application contains the following three pages.
A page that queries an external database for orders that are ready to be processed. The user can then process the order.
A page to view processed orders.
A page to view vendor information.
The application consumes three WCF services to retrieve external data.
Technical Requirements -
Visual Studio Solution:
The solution contains the following four projects.
ExternalQueue: A WCF service project used to communicate with the external order database.
OrderProcessor: An ASP.NET MVC project used for order processing and logging order metadata.
OrderUpload: A WCF service project used to submit order data to an external data source.
Shipping: A WCF service project used to acquire shipping information.
ExternalQueue Project:
Entity Framework is used for data access. The entities are defined in the ExternalOrders.edmx file as shown in the following diagram.
Answer :
Explanation:
Example code:
CacheItemPolicy policy = new CacheItemPolicy();
policy.AbsoluteExpiration = DateTimeOffset.Now.AddSeconds(60.0); policy.ChangeMonitors.Add(newHostFileChangeMonitor(filePaths));
References:
https://msdn.microsoft.com/en-us/library/system.runtime.caching.cacheitempolicy(v=vs.110)
Background -
You are developing an ASP.NET MVC application in Visual Studio that will be used to process orders.
Business Requirements -
The application contains the following three pages.
A page that queries an external database for orders that are ready to be processed. The user can then process the order.
A page to view processed orders.
A page to view vendor information.
The application consumes three WCF services to retrieve external data.
Technical Requirements -
Visual Studio Solution:
The solution contains the following four projects.
ExternalQueue: A WCF service project used to communicate with the external order database.
OrderProcessor: An ASP.NET MVC project used for order processing and logging order metadata.
OrderUpload: A WCF service project used to submit order data to an external data source.
Shipping: A WCF service project used to acquire shipping information.
ExternalQueue Project:
Entity Framework is used for data access. The entities are defined in the ExternalOrders.edmx file as shown in the following diagram.
Answer :
Explanation:
Box 1, Box 2: ExternalOrdersEtnities
The GetExternalOrders() method must use members of the EntityClient namespace to query the database for all records in the InboundQueue entity.
Box 3: ExecuteReader -
Box 4: SequentialAccess -
Background -
You are developing an ASP.NET MVC application in Visual Studio that will be used to process orders.
Business Requirements -
The application contains the following three pages.
A page that queries an external database for orders that are ready to be processed. The user can then process the order.
A page to view processed orders.
A page to view vendor information.
The application consumes three WCF services to retrieve external data.
Technical Requirements -
Visual Studio Solution:
The solution contains the following four projects.
ExternalQueue: A WCF service project used to communicate with the external order database.
OrderProcessor: An ASP.NET MVC project used for order processing and logging order metadata.
OrderUpload: A WCF service project used to submit order data to an external data source.
Shipping: A WCF service project used to acquire shipping information.
ExternalQueue Project:
Entity Framework is used for data access. The entities are defined in the ExternalOrders.edmx file as shown in the following diagram.
Answer :
Explanation:
Synchronous to Asynchronous Connection Open
You can upgrade an existing application to use the new asynchronous feature. For example, assume an application has a synchronous connection algorithm and blocks the UI thread every time it connects to the database and, once connected, the application calls a stored procedure that signals other users of the one who just signed in.
When converted to use the new asynchronous functionality, the program would look like: await conn.OpenAsync(); await cmd.ExecuteNonQueryAsync();
References:
https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/asynchronous-programming
Background -
You are developing an ASP.NET MVC application in Visual Studio that will be used to process orders.
Business Requirements -
The application contains the following three pages.
A page that queries an external database for orders that are ready to be processed. The user can then process the order.
A page to view processed orders.
A page to view vendor information.
The application consumes three WCF services to retrieve external data.
Technical Requirements -
Visual Studio Solution:
The solution contains the following four projects.
ExternalQueue: A WCF service project used to communicate with the external order database.
OrderProcessor: An ASP.NET MVC project used for order processing and logging order metadata.
OrderUpload: A WCF service project used to submit order data to an external data source.
Shipping: A WCF service project used to acquire shipping information.
ExternalQueue Project:
Entity Framework is used for data access. The entities are defined in the ExternalOrders.edmx file as shown in the following diagram.
Answer :
Reference:
https://www.dotnetcurry.com/entityframework/725/plain-old-clr-objects-poco-entity-framework
Online Bookstore Web Application
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer :
Target 1: conn.Open();
Target 2: "SELECT id, name FROM books WHERE id =@id";
Example of how to use named parameters in CommandType.Text.
SELECT * FROM dbo.Customers WHERE CustomerID =@CustomerID
Target 3:cmd.Parameters.AddWithValue("@id", id);
Examples of AddWithValue usage:
cmdSQL.Parameters.AddWithValue("@CustomerID", CustomerID)
cmdSQL.Parameters.AddWithValue("@CartType", cartType)
Target 4: Id=readerGetGuid(Reader.GetOrdinal("id")),
Target 5: reader.GetString(Reader.GetOrdinal("name"))
Example of usage of GetOrdinal. Call GetOrdinal and assign value to variable. int customerID = reader.GetOrdinal("CustomerID");
References:
https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.createcommand(v=vs.110).aspx https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.commandtext(v=vs.110).aspx https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.getordinal(v=vs.110).aspx
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : C
Explanation:
The root element attribute should be Address as per the following line:
From el in root.Elements(aw +"Address")
The Type should be Billing (not Shipping) as per the following line:
Where (string)e1.Attribute(aw + "Type") == "Billing"
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer :
Use server.OpenAsync().Wait() to put the server into a zen state of acceptance of all connections on the address we specified earlier.
References:
http://notebookheavy.com/2012/03/13/integration-test-asp-net-web-api-with-structuremap/
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : B
Explanation:
From scenario: TheGetTop100Books() method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read- only methods of reading data.
A SqlDataReader is a type that is good for reading data in the most efficient manner possible.
References:
http://csharp-station.com/Tutorial/AdoDotNet/Lesson04
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : D
Using the Entity Framework, developers issue queries using LINQ, then retrieve and manipulate data as strongly typed objects.
From scenario: The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
References:
http://www.entityframeworktutorial.net/what-is-entityframework.aspx
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : D
Explanation:
$top determines the maximum number of records to return.
From scenario:
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
References:
https://msdn.microsoft.com/en-us/library/gg309461(v=crm.7).aspx
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : B
Explanation:
Compare to the Delete method from the scenario:
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : B
Explanation:
Scenario: The CreateMonthlyTotalsReport() method must lock the data and prevent others from updating or inserting new rows until complete.
The highest isolation level, Serializable, provides a high degree of protection against interruptive transactions, but requires that each transaction complete before any other transactions are allowed to operate on the data.
With Serializable volatile data can be read but not modified, and no new data can be added during the transaction.
References:
https://docs.microsoft.com/en-us/sql/t-sql/statements/set-transaction-isolation-level-transact-sql?view=sql-server-ver15
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : D
Explanation:
The get the smallest number of sales we should use ascending (asc) ordering.
From scenario: RESTful API endpoints include:
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : A
Explanation:
Scenario: The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
Background -
You are developing an online bookstore web application that will be used by your company"™s customers.
Technical Requirements -
General requirements:
The web store application must be an ASP.NET MVC application written in Visual Studio.
The application must connect to a Microsoft SQL database.
TheGetTop100Books()method is mission critical and must return data as quickly as possible. It should take advantage of fast, forward-only, read-only methods of reading data.
TheImportBooks()method must keep a copy of the data that can be accessed while new books are being imported without blocking reads.
TheCreateMonthlyTotalsReport()method must lock the data and prevent others from updating or inserting new rows until complete.
The college textbook area of the web application must get data from a daily updated CSV file.
The children"™s book area of the web application must get data directly from a local database. It must use a connection string. It must also support access to the stored procedures on a database. Further, it is required to have strongly typed objects. Finally, it will require access to databases from multiple vendors and needs to support more than one-to-one mapping of database tables.
The cookbook functionality is contained within a client-side application that must connect to the server using HTTP and requires access to the data using
JavaScript.
TheBookApiControllerclass must have a method that is able to perform ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoint.
Action: Get a list of all books -
HTTP method: GET -
Relative URI: /books -
Action: Get a book by id -
HTTP method: GET -
Relative URI: /books/id -
Action: Create a new book -
HTTP method: POST -
Relative URI: /books -
Action: Update a book -
HTTP method: PUT -
Relative URI: /books/id -
Action: Delete a book -
HTTP method: DELETE -
Relative URI: /books/id -
Application Structure -
Main -
Answer : A
Explanation:
The gt keyword is used for the greater than comparison.
The startswith keyword is used to compare the beginning of a string.
Example: Returns entry numbers611 and higher.
filter= Entry_No gt 610
Example: Returns all customers names beginning with "S".
filter=startswith(Name, 'S')
References:
https://msdn.microsoft.com/en-us/library/hh169248(v=nav.90).aspx
Adventure Works Cycles -
Have any questions or issues ? Please dont hesitate to contact us