Horje
Xamarin Database insert in SQL Lite Code Example
Xamarin Database insert in SQL Lite
//********* NAYCode.com
public void SaveRegister(string str_user)
   {
            Employee emp = new Employee();
           
            emp.EmpID= txtEmp.Text;
            emp.EmpNo = txtEmp.Text;
            emp.UserName = str_user;
            emp.DeviceID= "test";
            emp.IsActive = 0;
            emp.IsRegister = 1;

            App.EmpDB.SaveEmployeeAsync(emp);

    }
Source: naycode.com
Xamarin Database insert in SQL Lite
//******* For More Tutorial - NAYCode.com
public Task SaveEmployeeAsync(Employee emp)
{
   return _db.InsertAsync(emp);
}
Source: naycode.com




Csharp

Related
unity button press onclick click add C# Code Example unity button press onclick click add C# Code Example
how to do if statement based on date in asp net c# Code Example how to do if statement based on date in asp net c# Code Example
C# create delegate type at runtime Code Example C# create delegate type at runtime Code Example
string.QueryString c# Code Example string.QueryString c# Code Example
unity can't rename 2d character Code Example unity can't rename 2d character Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11