当前位置: 首页>>代码示例>>C#>>正文


C# SqlFilter.ExecuteEntity方法代码示例

本文整理汇总了C#中BootFX.Common.Data.SqlFilter.ExecuteEntity方法的典型用法代码示例。如果您正苦于以下问题:C# SqlFilter.ExecuteEntity方法的具体用法?C# SqlFilter.ExecuteEntity怎么用?C# SqlFilter.ExecuteEntity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BootFX.Common.Data.SqlFilter的用法示例。


在下文中一共展示了SqlFilter.ExecuteEntity方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetById

 /// <summary>
 /// Gets the <see cref="ApiKey"/> entity where the ID matches the given specification.
 /// </summary>
 public static ApiKey GetById(int apiKeyId, BootFX.Common.Data.SqlOperator apiKeyIdOperator, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(ApiKey));
     filter.Constraints.Add("ApiKeyId", apiKeyIdOperator, apiKeyId);
     ApiKey results = ((ApiKey)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:Val9,项目名称:AmxMobile.Services-1.1,代码行数:10,代码来源:ApiKeyBase.cs

示例2: GetById

 /// <summary>
 /// Gets the <see cref="Resource"/> entity where the ID matches the given specification.
 /// </summary>
 public static Resource GetById(int resourceId, BootFX.Common.Data.SqlOperator resourceIdOperator, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(Resource));
     filter.Constraints.Add("ResourceId", resourceIdOperator, resourceId);
     Resource results = ((Resource)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:10,代码来源:ResourceBase.cs

示例3: GetByCustomerIdAndExternalId

 /// <summary>
 /// Gets an entity where CustomerId and ExternalId are equal to the given values.
 /// </summary>
 /// <remarks>
 /// Created for index <c>IX_ShmResources</c>.
 /// </remarks>
 public static Resource GetByCustomerIdAndExternalId(int customerId, string externalId, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(Resource));
     filter.Constraints.Add("CustomerId", BootFX.Common.Data.SqlOperator.EqualTo, customerId);
     filter.Constraints.Add("ExternalId", BootFX.Common.Data.SqlOperator.EqualTo, externalId);
     Resource results = ((Resource)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:14,代码来源:ResourceBase.cs

示例4: GetByUsernameAndApiKeyId

 /// <summary>
 /// Gets an entity where Username and ApiKeyId are equal to the given values.
 /// </summary>
 /// <remarks>
 /// Created for index <c>Users_Username</c>.
 /// </remarks>
 public static UserItem GetByUsernameAndApiKeyId(string username, int apiKeyId, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(UserItem));
     filter.Constraints.Add("Username", BootFX.Common.Data.SqlOperator.EqualTo, username);
     filter.Constraints.Add("ApiKeyId", BootFX.Common.Data.SqlOperator.EqualTo, apiKeyId);
     UserItem results = ((UserItem)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:Val9,项目名称:AmxMobile.Services-1.1,代码行数:14,代码来源:UserItemBase.cs

示例5: GetByApiKeyIdAndEmail

 /// <summary>
 /// Gets an entity where ApiKeyId and Email are equal to the given values.
 /// </summary>
 /// <remarks>
 /// Created for index <c>Users_ApiEmail</c>.
 /// </remarks>
 public static UserItem GetByApiKeyIdAndEmail(int apiKeyId, string email, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(UserItem));
     filter.Constraints.Add("ApiKeyId", BootFX.Common.Data.SqlOperator.EqualTo, apiKeyId);
     filter.Constraints.Add("Email", BootFX.Common.Data.SqlOperator.EqualTo, email);
     UserItem results = ((UserItem)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:Val9,项目名称:AmxMobile.Services-1.1,代码行数:14,代码来源:UserItemBase.cs

示例6: GetById

 /// <summary>
 /// Gets the <see cref="Country"/> entity where the ID matches the given specification.
 /// </summary>
 public static Country GetById(int countryId, BootFX.Common.Data.SqlOperator countryIdOperator, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(Country));
     filter.Constraints.Add("CountryId", countryIdOperator, countryId);
     Country results = ((Country)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:Val9,项目名称:AmxMobile.Services-1.1,代码行数:10,代码来源:CountryBase.cs

示例7: GetById

 /// <summary>
 /// Gets the <see cref="CustomField"/> entity where the ID matches the given specification.
 /// </summary>
 public static CustomField GetById(int customFieldId, BootFX.Common.Data.SqlOperator customFieldIdOperator)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(CustomField));
     filter.Constraints.Add("CustomFieldId", customFieldIdOperator, customFieldId);
     return ((CustomField)(filter.ExecuteEntity()));
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:9,代码来源:CustomFieldBase.cs

示例8: GetById

 /// <summary>
 /// Gets the <see cref="CustomData"/> entity where the ID matches the given specification.
 /// </summary>
 public static CustomData GetById(int customDataId, BootFX.Common.Data.SqlOperator customDataIdOperator, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(CustomData));
     filter.Constraints.Add("CustomDataId", customDataIdOperator, customDataId);
     CustomData results = ((CustomData)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:10,代码来源:CustomDataBase.cs

示例9: GetByCustomFieldIdAndObjectId

 /// <summary>
 /// Gets an entity where CustomFieldId and ObjectId are equal to the given values.
 /// </summary>
 /// <remarks>
 /// Created for index <c>CustomData_CustomFieldIdObjectId</c>.
 /// </remarks>
 public static CustomData GetByCustomFieldIdAndObjectId(int customFieldId, long objectId, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(CustomData));
     filter.Constraints.Add("CustomFieldId", BootFX.Common.Data.SqlOperator.EqualTo, customFieldId);
     filter.Constraints.Add("ObjectId", BootFX.Common.Data.SqlOperator.EqualTo, objectId);
     CustomData results = ((CustomData)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:14,代码来源:CustomDataBase.cs

示例10: GetById

 /// <summary>
 /// Gets the <see cref="TableCatalogItem"/> entity where the ID matches the given specification.
 /// </summary>
 public static TableCatalogItem GetById(int tableCatalogId, BootFX.Common.Data.SqlOperator tableCatalogIdOperator, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(TableCatalogItem));
     filter.Constraints.Add("TableCatalogId", tableCatalogIdOperator, tableCatalogId);
     TableCatalogItem results = ((TableCatalogItem)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:10,代码来源:TableCatalogItemBase.cs

示例11: GetByTargetTypeName

 /// <summary>
 /// Gets an entity where TargetTypeName is equal to the given value.
 /// </summary>
 /// <remarks>
 /// Created for index <c>TableCatalogItems_TargetTypeName</c>.
 /// </remarks>
 public static TableCatalogItem GetByTargetTypeName(string targetTypeName, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(TableCatalogItem));
     filter.Constraints.Add("TargetTypeName", BootFX.Common.Data.SqlOperator.EqualTo, targetTypeName);
     TableCatalogItem results = ((TableCatalogItem)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:13,代码来源:TableCatalogItemBase.cs

示例12: GetByToken

 /// <summary>
 /// Gets an entity where Token is equal to the given value.
 /// </summary>
 /// <remarks>
 /// Created for index <c>LogonTokens_Token</c>.
 /// </remarks>
 public static LogonToken GetByToken(string token, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(LogonToken));
     filter.Constraints.Add("Token", BootFX.Common.Data.SqlOperator.EqualTo, token);
     LogonToken results = ((LogonToken)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:Val9,项目名称:AmxMobile.Services-1.1,代码行数:13,代码来源:LogonTokenBase.cs

示例13: GetById

 /// <summary>
 /// Gets the <see cref="LogonToken"/> entity where the ID matches the given specification.
 /// </summary>
 public static LogonToken GetById(int logonTokenId, BootFX.Common.Data.SqlOperator logonTokenIdOperator, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(LogonToken));
     filter.Constraints.Add("LogonTokenId", logonTokenIdOperator, logonTokenId);
     LogonToken results = ((LogonToken)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:Val9,项目名称:AmxMobile.Services-1.1,代码行数:10,代码来源:LogonTokenBase.cs

示例14: GetByShmCustomerIdAndNameAndTableCatalogId

 /// <summary>
 /// Gets an entity where ShmCustomerId, Name and TableCatalogId are equal to the given values.
 /// </summary>
 /// <remarks>
 /// Created for index <c>CustomFields_CustomerIdTableCatalogIdName</c>.
 /// </remarks>
 public static CustomField GetByShmCustomerIdAndNameAndTableCatalogId(int shmCustomerId, string name, int tableCatalogId, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(CustomField));
     filter.Constraints.Add("ShmCustomerId", BootFX.Common.Data.SqlOperator.EqualTo, shmCustomerId);
     filter.Constraints.Add("Name", BootFX.Common.Data.SqlOperator.EqualTo, name);
     filter.Constraints.Add("TableCatalogId", BootFX.Common.Data.SqlOperator.EqualTo, tableCatalogId);
     CustomField results = ((CustomField)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:amxmobile,项目名称:AmxMobile.PanicButton.Server-1.0,代码行数:15,代码来源:CustomFieldBase.cs

示例15: GetByUsername

 /// <summary>
 /// Gets an entity where Username is equal to the given value.
 /// </summary>
 /// <remarks>
 /// Created for index <c>ApiKeys_Username</c>.
 /// </remarks>
 public static ApiKey GetByUsername(string username, BootFX.Common.OnNotFound onNotFound)
 {
     BootFX.Common.Data.SqlFilter filter = new BootFX.Common.Data.SqlFilter(typeof(ApiKey));
     filter.Constraints.Add("Username", BootFX.Common.Data.SqlOperator.EqualTo, username);
     ApiKey results = ((ApiKey)(filter.ExecuteEntity()));
     return results;
 }
开发者ID:Val9,项目名称:AmxMobile.Services-1.1,代码行数:13,代码来源:ApiKeyBase.cs


注:本文中的BootFX.Common.Data.SqlFilter.ExecuteEntity方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。