Questions tagged [extended-properties]
101 questions
0
votes
1 answer
Filtering on two extended properties with Microsoft Graph
Some of my calendar events have two extended properties:
// Extended Properties
var extendedProperties = new EventSingleValueExtendedPropertiesCollectionPage();
extendedProperties.Add(new SingleValueLegacyExtendedProperty
{
Id =…

Andrew Truckle
- 17,769
- 16
- 66
- 164
0
votes
1 answer
No response received when trying to get text body in ExtendedPropertyDefinition
I want to receive a message body text in plain text format.
I am using the following code but when I am trying to get through extended property collection it gives nothing.
extendedPropertyDefinition = new ExtendedPropertyDefinition(0X1000,
…
0
votes
1 answer
Error when calling sp_addextendedproperty from another stored procedure
I try to add extended properties to my table and column, but since SQL Server separates the add and update stored procedure, and need too many unused parameters for my case, I decide to create wrapper for these 2 stored procedures so I can create…

Angga
- 2,305
- 1
- 17
- 21
0
votes
1 answer
Graph API Extended Properties AAD and adal.js
WE have gone ahead and used AAD Graph API to extend certain properties of user object which are our primary identifiers.
we use JWT token on the client side in an single page application using adal-angular.
I would like to know to how do you…

Sundar Iyer
- 11
- 2
0
votes
0 answers
cannot get Active Directory's extended property in production.
i am using the following code to get Extended property "JobCode"
[DirectoryRdnPrefix("CN")]
[DirectoryObjectClass("Person")]
public class UserPrincipalEx : UserPrincipal
{
public static new UserPrincipalEx FindByIdentity(PrincipalContext…

Raas Masood
- 1,475
- 3
- 23
- 61
0
votes
1 answer
How can I use an extended entity to create a new property in my EF6 class with property changed notification?
I have a table in my entity model called prices. It has several fields named value0, value1, value2, value3, value4... (these are their literal names, sigh..). I cannot rename them or in any way change them.
What I would like is to use an extended…

mark_h
- 5,233
- 4
- 36
- 52
0
votes
1 answer
extended property mass update using temporary table
I need to semi-automate an extended property update and what I planned to do, rightly or wrongly, is to populate a temporary table with all of the data, then somehow join to the temporary table when checking to see if the value already exists.
Then…

stonypaul
- 667
- 1
- 8
- 20
0
votes
1 answer
Dynamic Row Level Security In a SQL Server Database Using Extended Properties
We have a requirement to provide customer access to a staging database so that they can extract their data into their own servers, but every table contains all customers data. All of the tables have a 'CustomerID' column. Customers should only see…

Max xaM
- 348
- 2
- 12
0
votes
1 answer
Extended property in EWS
I am interacting with exchange to extract emails having particular extended property. I am able to fetch email that I have sent with newly created extended properties, but when I reply to the emails, these properties are not preserved..Is this…

Pink Ninja
- 117
- 2
- 13
0
votes
1 answer
Writing extended attributes to files on OS X
I am trying to use the setfattr command in the command line, but it tells me command not found. I'm assuming this means that the package is not installed, however from what I understand OSX should have extended attributes enabled by default. Any…

kag359six
- 1,693
- 2
- 16
- 21
0
votes
2 answers
I want basic Form controls like textbox, button, label to have the same custom methods
I have found that there is no base class that directly underneath:
Textbox, Label and Button
These are their definitions:
public class TextBox : TextBoxBase
public abstract class TextBoxBase : Control
public class Button : ButtonBase,…

c-sharp
- 1
- 1
0
votes
1 answer
How can I retrieve an extended property for a Google Calendar event?
I have several extended properties I've added to various events using PHP. Now I want to retrieve them using Google Apps Script in Google Sheets. I'm able to access the calendar, all events and the standard data elements like this:
var mycal = "...…

sakeferret
- 305
- 1
- 6
- 15
0
votes
1 answer
accessing breeze navigation properties when they are permission controlled
Lets say I have two entities Location and Holidays. Holidays are associated with a Location. Therefore, in breeze I can write a query like follows to retrieve the holidays related to a particular location:
return…

devC
- 1,384
- 5
- 32
- 56
0
votes
1 answer
Displaying limited number of columns in grid using DataTable.ExtendedProperties
I want to display a limited number of columns in a grid that is connected to a DataTable as the data source. In an example that I found, it uses the property, ExtendedProperties to define how the column headers are displayed, the order and which…

Gloria Santin
- 2,066
- 3
- 51
- 124
0
votes
1 answer
Read custom column with EWS managed API
I need to read and write a custom column that I created in a process mailbox (public mailbox?) within Outlook.
I think I'm supposed to use the ExtendedPropertyDefinition somehow, however, I do not know how. I do not have the GUID for the column, if…

Ashton
- 1,265
- 14
- 23