Class CompatibilitySchema.Member
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.sysmembers (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Contains a row for each member of a database role.
important
This SQL Server 2000 system table is included as a view for backward compatibility. We recommend that you use the current SQL Server system views instead. To find the equivalent system view or views, see Mapping System Tables to System Views (Transact-SQL). This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.
See sys.sysmembers.
[Table(Schema = "sys", Name = "sysmembers", IsView = true)]
public class CompatibilitySchema.Member
- Inheritance
-
CompatibilitySchema.Member
- Extension Methods
Properties
Groupuid
User ID for the role. Overflows or returns NULL if the number of users and roles exceeds 32,767.
[Column("groupuid")]
[Nullable]
public short? Groupuid { get; set; }
Property Value
Memberuid
User ID for the role member. Overflows or returns NULL if the number of users and roles exceeds 32,767.
[Column("memberuid")]
[Nullable]
public short? Memberuid { get; set; }