Search Results for

    Show / Hide Table of Contents

    Interface IDeleteDataSyntax

    Specify the condition of the data to delete

    Namespace: FluentMigrator.Builders.Delete
    Assembly: FluentMigrator.Abstractions.dll
    Syntax
    public interface IDeleteDataSyntax

    Methods

    | Edit this page View Source

    AllRows()

    Specify that all rows should be deleted

    Declaration
    void AllRows()
    | Edit this page View Source

    IsNull(string)

    Specify that all rows having a null value in the given column should be deleted

    Declaration
    void IsNull(string columnName)
    Parameters
    Type Name Description
    string columnName

    The column name

    | Edit this page View Source

    Row(object)

    Define the condition of a row/multiple rows to delete

    Declaration
    IDeleteDataSyntax Row(object dataAsAnonymousType)
    Parameters
    Type Name Description
    object dataAsAnonymousType

    An anonymous type whose member names will be trated as column names and their values as values for the condition

    Returns
    Type Description
    IDeleteDataSyntax

    The next step

    • Edit this page
    • View Source
    In this article
    Back to top
    Copyright © 2018 Fluent Migrator Project
    Generated by DocFX
    Creative Commons License
    FluentMigrator Documentation by FluentMigrator Project is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.