CatFactory.SqlServer icon indicating copy to clipboard operation
CatFactory.SqlServer copied to clipboard

Add FnListExtendedPropertyResult class

Open hherzl opened this issue 2 years ago • 0 comments

Add FnListExtendedPropertyResult class as result of fn_listextendedproperty invoke, the class must contain the following properties:

public class FnListExtendedPropertyResult
{
 public string ObjType { get; set; }
 public string ObjName { get; set; }
 public string Name { get; set; }
 public string Value { get; set; }
}

Use this new class as result for FnListExtendedPropertyAsync extension method.

hherzl avatar May 12 '23 02:05 hherzl