
Search In
Hello All,
In this blog we will discuss about how to query mongodb with "like".
In MySql you might have normally used below code to find by like
select * from users where name like '%text%'
But for using “like” in mongoDb you have to write in
For setting up the virtual host on window system below are the steps -
Lets suppose,
http://localhost will access for all the projects in a file,
http://qa11.localhost is for access to only one project and also it will set the document_path for t
Hi All,
If you want to setup Django framework in your system then you just need to read this blog only .
Python Installation : - You need to install python first.You can install python from here . I'm using 3.5.2 version of python and s
In C# it is a value data type. It contains information of different type of variables.
Srtuctures are mainly used to store homogenous information.
Structures are used to represent record. You might want to track the follow
Alias is basically renaming a table temporarily for a sql statement.
The rename is done only for a particular statement is temporory.
ex
The syntax of table alias is as follows
SELECT column1, column2....
FROM table_name AS alias_name
WHERE [con
Var vs Dynamic Keywords in C#
1) Introduction of these keywords
var was introduced in C# 3.0.
dynamic was introduced in C# 4.0.
2) Variable initialization
When a variable is declared as var type then the variable is to be initiali
In given below code ExecuteCode() is a method which is use for run time compilation. codeToCompile is a complete method which you have to execute and userid and password are the passing parameters of method body codeToCompile .
us
ArrayList is an heterogeneous collection of objects where each object can be indexed individually. While writing an application there could be some scenarios where we have ArrayList object filled with data and we want that data in delimited format us
1- Place JS and CSS files under head tag.
jquery.min.js
jquery.Jcrop.js
main.css
demos.css
jquery.Jcrop.css
2- Also copy and paste bellow piece of javascript code under head tag.
<script type="text/javascript">
$(fun
Anonymous method is a method without any name and return type but have a body content and the optional arguments. This type of method is created by using the delegate keyword. Return type of the anonymous method is dependence on the return stat
