Adf.Data.SmartReferences.SmartReferenceGateway.Count C# (CSharp) 메소드

Count() 공개 정적인 메소드

Get the record count from SmartReference table.
The current state of the connection is closed.
public static Count ( ) : int
리턴 int
        public static int Count()
        {
            return new AdfQuery()
                .Count()
                .From(SmartReferenceDescriber.Table)
                .RunScalar<int>(DataSource);
        }