. NET environment, the SQLite database is manipulated through LINQ

Source: Internet
Author: User
Tags sqlite database

A table in the corresponding database

[Table (Name = "Main. Student ")]
public class Student
{
[Column (Name = "Stuname", DbType = "varchar (50)")]
public string Stuname {get; set;}

[Column (Name = "Stuno", DbType = "varchar ()", IsPrimaryKey = True)]
public string Stuno {get; set;}

}

public class Sqlitedatacontext:datacontext
{
Public table<student> Students
{
Get
{
return gettable<student> ();
}
}

Public Sqlitedatacontext (idbconnection connection):
Base (Connection)
{
}
}

Working with SQLite Databases #region LINQ
Sqlitedatacontext context = new Sqlitedatacontext (SQLite. Connecttion);

/*
* Query and insert data
*/
var stu = context. Students.singleordefault (item = Item). Stuname.equals ("Fei Fei"));
if (Stu = = null)
{
Context. Students.insertonsubmit (New Student () {Stuno = "110525", Stuname = "Fly"});
Context. SubmitChanges ();
}


/*
* Query and delete data
*/
Stu = context. Students.single (item = Item). Stuname.equals ("Fei Fei"));
if (stu! = null)
{
Context. Students.deleteonsubmit (Stu);
Context. SubmitChanges ();
}


/*
* Query and modify data
*/
Stu = context. Students.single (item = Item). Stuname.equals ("Fei Fei"));
if (stu! = null)
{
Stu. Stuname = "Wu Gaofei";
Context. SubmitChanges ();
}


Console.readkey ();

#endregion

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.