שלום לכולם,
בתאריך 24/10/10 יתקיים מפגש של קבוצת SharePoint בנושא BCS (Business Connectivity Services). את המפגש יעביר אלכס לויתן מחברת גארדיאן.
תיאור קצר:
במפגש זה נעסוק ב BCS – Business connectivity Services, יכולת שמאפשרת להתממשק מתוך SharePoint למערכות אחרות בארגון, וכן למקורות מידע חיצוניים כגון: SQL, Oracle , Web Services וכו'.
במפגש נדבר על שני הדרכים לעבוד עם BCS– באמצעות SharePoint Designer וללא כתיבת קוד (שיטה זו מתאימה למיישמים ומטמיעים), ובאמצעות Visual Studio ע"י שימוש בקוד (שיטה זו מתאימה למפתחים).
לפרטים נוספים והרשמה, אתר המפגש:
http://www.sharepoint-israel.co.il/events/SPG/SPG9
נתראה במפגש,
איתי.
Got my MVP award from Microsoft (the actual award, not the title) – Just wanted to share: (Thank you MS!)

Note to self: ListData.svc (aka SP2010 Data Services) is Case Sensitive.
In a previous post of mine, I have talked about the fact that SPMetal does not generate properties for the “Created By” and “Modified By” fields. This was back in the beta phase of SharePoint 2010 and the workaround that I have suggested was to manually add the desired fields into the generated code file.
Since then we have come to know SharePoint 2010 better, and RTM has brought some fixes. So here is how it should be done now.
SPMetal command line can accept parameters specified in an XML file. You can use this XML file to modify the way SPMetal generates classes. On of the things you can specify is the “Column” element, which tells SPMetal to specifically include a column, even if it’s hidden. We will use this to force SPMetal to include our fields.
For detailed explanation about passing parameters to SPMetal, see: http://msdn.microsoft.com/en-us/library/ee535056.aspx
Here is an example of a parameters file that forces the inclusion of “Modified By” and “Created By” columns to the “Contact” content type.
<?xml version="1.0" encoding="utf-8"?>
<Web xmlns="http://schemas.microsoft.com/SharePoint/2009/spmetal">
<ContentType Name="Contact">
<Column Name="CreatedBy" />
<Column Name="ModifiedBy" />
</ContentType>
</Web>
To use this parameters file, run SPMetal like so:
SPMETAL /web:http://serveraddress /code:codefilename.cs /parameters:params.xml