Show / Hide Table of Contents

Class FilestreamRootPathRepository

FilestreamRootPathRepository

Inheritance
System.Object
FilestreamRootPathRepository
Namespace: MESL.SqlRace.Domain.Repositories.Filestream
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class FilestreamRootPathRepository : Object

Constructors

FilestreamRootPathRepository()

Initializes a new instance of the FilestreamRootPathRepository class.

Declaration
public FilestreamRootPathRepository()

Properties

GetAll

Gets the get all.

Declaration
public IReadOnlyList<FilestreamRootPath> GetAll { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<FilestreamRootPath>

The get all.

Methods

Delete(FilestreamRootPath)

Deletes the specified root path.

Declaration
public void Delete(FilestreamRootPath rootPath)
Parameters
Type Name Description
FilestreamRootPath rootPath

The root path.

Get(Int32)

Gets the specified identifier.

Declaration
public FilestreamRootPath Get(int id)
Parameters
Type Name Description
System.Int32 id

The identifier.

Returns
Type Description
FilestreamRootPath

Get(String)

Gets the specified path.

Declaration
public FilestreamRootPath Get(string path)
Parameters
Type Name Description
System.String path

The path.

Returns
Type Description
FilestreamRootPath

Insert(FilestreamRootPath)

Inserts the specified root path.

Declaration
public void Insert(FilestreamRootPath rootPath)
Parameters
Type Name Description
FilestreamRootPath rootPath

The root path.

SearchFor(Func<FilestreamRootPath, Boolean>)

Searches for.

Declaration
public IEnumerable<FilestreamRootPath> SearchFor(Func<FilestreamRootPath, bool> predicate)
Parameters
Type Name Description
System.Func<FilestreamRootPath, System.Boolean> predicate

The predicate.

Returns
Type Description
System.Collections.Generic.IEnumerable<FilestreamRootPath>
Back to top Generated by DocFX