This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=LookupSet(Fields!datasetA_ID.Value, Fields!datasetB_IDs.Value,Fields!datasetBColumnTarget.Value,"datasetB") | |
//returns an array of values |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=Join(LookupSet(Fields!datasetA_ID.Value, Fields!datasetB_IDs.Value,Fields!datasetBColumnTarget.Value,"datasetB"), ",") | |
//returns a CSV string: Value1, Value2, ..., ValueN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=Join(LookupSet(Fields!SupplierID.Value,Fields!SupplierID.Value, Fields!CompanyName.Value, "Ids_Suppliers"),",") | |
//We can view the column CompanyName without modify the Products dataset select query |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=MultiLookup(Fields!datasetA_IDs.Value, Fields!datasetB_ID.Value,Fields!datasetBColumnTarget.Value,"datasetB") | |
//returns an array of values |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=MultiLookup(Split(Fields!datasetA_IDs.Value,","), Fields!datasetB_IDs.Value,Fields!datasetBColumnTarget.Value,"datasetB") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Class Telefilm | |
public class Telefilm | |
{ | |
public int TelefilmId { get; set; } | |
public string TelefilmName { get; set; } | |
public DateTime CreateDate { get; set; } | |
} | |
//Class Character | |
public class Character |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DataRepository | |
{ | |
public static Telefilm[] Telefilms = new Telefilm[]{ | |
new Telefilm{TelefilmId=1 , TelefilmName="Slevin" }, | |
new Telefilm{TelefilmId=2 , TelefilmName="Scrubs" }, | |
new Telefilm{TelefilmId=3 , TelefilmName="HIMYM" }, | |
new Telefilm{TelefilmId=4 , TelefilmName="Californication" } | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//CharacterController.cs | |
public class CharacterController : ApiController | |
{ | |
public IEnumerable GetCharacters() | |
{ | |
return DataRepository.Characters; | |
} | |
public IEnumerabl GetCharacter(int characterId) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
header.myNavBar { | |
width: 100%; | |
height: 20px; | |
opacity: 0.5; | |
z-index: 1; | |
position: fixed; | |
top: 0; | |
left: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEDPWULLTEzNjkxmzkwNjRkZAVvqsMGC6PVDmbCxBlkLVKNahk"/> |