C# Класс Howler.Database.DatabaseClientExtensionMethods

Basic extension methods to support set operations for the IDatabaseClient implementations.
Показать файл Открыть проект

Открытые методы

Метод Описание
Add ( IQueryable table, item ) : void

Adds an item to the table.

Remove ( IQueryable table, item ) : void

Removes an item from the table.

Update ( IQueryable table, item ) : void

Updates an item on the table.

Описание методов

Add() публичный статический Метод

Adds an item to the table.
public static Add ( IQueryable table, item ) : void
table IQueryable The table to add to.
item The item to add.
Результат void

Remove() публичный статический Метод

Removes an item from the table.
public static Remove ( IQueryable table, item ) : void
table IQueryable The table to remove from.
item The item to remove.
Результат void

Update() публичный статический Метод

Updates an item on the table.
public static Update ( IQueryable table, item ) : void
table IQueryable The table to update.
item The item to update.
Результат void