Adf.Data.SmartReferences.SmartReferenceGateway.Save C# (CSharp) Method

Save() public static method

Save the data into SmartReference table.
The current state of the connection is closed.
public static Save ( IInternalState state ) : bool
state IInternalState The data of that needs to be saved.
return bool
        public static bool Save(IInternalState state)
        {
            if (state == null) throw new ArgumentNullException("state");

            return new AdfQuery()
                .Select()
                .From(SmartReferenceDescriber.Table)
                .Save(DataSource, state);
        }